diff options
author | 2024-11-08 01:18:05 +0530 | |
---|---|---|
committer | 2024-11-10 08:03:48 +0100 | |
commit | 1ee792f6e956dc8e52e3360bab49a30cea581b3e (patch) | |
tree | 37949a770a3bee94cdd8e9f595f1ad02cc299e45 | |
parent | staging: vc04_services: Cleanup TODO entry (diff) | |
download | wireguard-linux-1ee792f6e956dc8e52e3360bab49a30cea581b3e.tar.xz wireguard-linux-1ee792f6e956dc8e52e3360bab49a30cea581b3e.zip |
staging: vchiq_core: Rectify header include for vchiq_dump_state()
The header vchiq_core.h does not need <linux/debugfs.h>. It needs
the <linux/seq_file.h> for vchiq_dump_state() to dump the vchiq
state through vchiq_debugfs.[ch].
Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
Link: https://lore.kernel.org/r/20241107194806.90408-3-umang.jain@ideasonboard.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h index fadca7b1b196..9b4e766990a4 100644 --- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h +++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h @@ -7,11 +7,11 @@ #include <linux/mutex.h> #include <linux/completion.h> #include <linux/dma-mapping.h> -#include <linux/debugfs.h> #include <linux/dev_printk.h> #include <linux/kthread.h> #include <linux/kref.h> #include <linux/rcupdate.h> +#include <linux/seq_file.h> #include <linux/spinlock_types.h> #include <linux/wait.h> |