]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
staging: vchiq_core: Rectify header include for vchiq_dump_state()
authorUmang Jain <umang.jain@ideasonboard.com>
Thu, 7 Nov 2024 19:48:05 +0000 (01:18 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 10 Nov 2024 07:03:48 +0000 (08:03 +0100)
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>
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h

index fadca7b1b1965a19446de2b6beeba9a632a328a7..9b4e766990a493d6e9d4e0604f2c84f4e7b77804 100644 (file)
@@ -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>