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

Configure Feed

Select the types of activity you want to include in your feed.

scsi: ufs: core: Make the header files self-contained

Add the include directives and forward declarations that are missing
from the UFS core header files. This prevents compilation failures if
include directives are reordered.

Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Link: https://patch.msgid.link/20260401202506.1445324-4-bvanassche@acm.org
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

authored by

Bart Van Assche and committed by
Martin K. Petersen
6daa8dd0 efa1f6a9

+5
+3
drivers/ufs/core/ufs-debugfs.h
··· 5 5 #ifndef __UFS_DEBUGFS_H__ 6 6 #define __UFS_DEBUGFS_H__ 7 7 8 + #include <linux/init.h> 9 + #include <linux/types.h> 10 + 8 11 struct ufs_hba; 9 12 10 13 #ifdef CONFIG_DEBUG_FS
+2
drivers/ufs/core/ufs-fault-injection.h
··· 6 6 #include <linux/kconfig.h> 7 7 #include <linux/types.h> 8 8 9 + struct ufs_hba; 10 + 9 11 #ifdef CONFIG_SCSI_UFS_FAULT_INJECTION 10 12 void ufs_fault_inject_hba_init(struct ufs_hba *hba); 11 13 bool ufs_trigger_eh(struct ufs_hba *hba);