Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Umang Jain and committed by
Greg Kroah-Hartman
1ee792f6 d0bc38d7

+1 -1
+1 -1
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h
··· 7 7 #include <linux/mutex.h> 8 8 #include <linux/completion.h> 9 9 #include <linux/dma-mapping.h> 10 - #include <linux/debugfs.h> 11 10 #include <linux/dev_printk.h> 12 11 #include <linux/kthread.h> 13 12 #include <linux/kref.h> 14 13 #include <linux/rcupdate.h> 14 + #include <linux/seq_file.h> 15 15 #include <linux/spinlock_types.h> 16 16 #include <linux/wait.h> 17 17