mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-19 04:44:09 +00:00
Move the VCHIQ headers from drivers/staging/vc04_services/include to include/linux/raspberrypi This is done so that they can be shared between the VCHIQ interface (which is going to be de-staged in a subsequent commit from staging) and the VCHIQ drivers left in the staging/vc04_services (namely bcm2835-audio, bcm2835-camera). The include/linux/raspberrypi/ provides a central location to serve both of these areas. Co-developed-by: Umang Jain <umang.jain@ideasonboard.com> Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Jai Luthra <jai.luthra@ideasonboard.com> Link: https://patch.msgid.link/20251029-vchiq-destage-v3-4-da8d6c83c2c5@ideasonboard.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
23 lines
532 B
C
23 lines
532 B
C
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
|
/* Copyright (c) 2014 Raspberry Pi (Trading) Ltd. All rights reserved. */
|
|
|
|
#ifndef VCHIQ_DEBUGFS_H
|
|
#define VCHIQ_DEBUGFS_H
|
|
|
|
struct vchiq_state;
|
|
struct vchiq_instance;
|
|
|
|
struct vchiq_debugfs_node {
|
|
struct dentry *dentry;
|
|
};
|
|
|
|
void vchiq_debugfs_init(struct vchiq_state *state);
|
|
|
|
void vchiq_debugfs_deinit(void);
|
|
|
|
void vchiq_debugfs_add_instance(struct vchiq_instance *instance);
|
|
|
|
void vchiq_debugfs_remove_instance(struct vchiq_instance *instance);
|
|
|
|
#endif /* VCHIQ_DEBUGFS_H */
|