Commit cce9fd60 authored by Bart Van Assche's avatar Bart Van Assche Committed by Martin K. Petersen

scsi: ufs: Minimize #include directives

Only #include those header files that are needed.

Note: include/ufs/ufshcd.h needs <scsi/scsi_host.h> because of SG_ALL.
Signed-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Link: https://lore.kernel.org/r/20230727194457.3152309-6-bvanassche@acm.orgSigned-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent f0819152
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
#ifndef _UFS_H #ifndef _UFS_H
#define _UFS_H #define _UFS_H
#include <linux/mutex.h> #include <linux/bitops.h>
#include <linux/types.h> #include <linux/types.h>
#include <uapi/scsi/scsi_bsg_ufs.h> #include <uapi/scsi/scsi_bsg_ufs.h>
......
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include <linux/pm_runtime.h> #include <linux/pm_runtime.h>
#include <linux/dma-direction.h> #include <linux/dma-direction.h>
#include <scsi/scsi_device.h> #include <scsi/scsi_device.h>
#include <scsi/scsi_host.h>
#include <ufs/unipro.h> #include <ufs/unipro.h>
#include <ufs/ufs.h> #include <ufs/ufs.h>
#include <ufs/ufs_quirks.h> #include <ufs/ufs_quirks.h>
......
...@@ -11,7 +11,8 @@ ...@@ -11,7 +11,8 @@
#ifndef _UFSHCI_H #ifndef _UFSHCI_H
#define _UFSHCI_H #define _UFSHCI_H
#include <scsi/scsi_host.h> #include <linux/types.h>
#include <ufs/ufs.h>
enum { enum {
TASK_REQ_UPIU_SIZE_DWORDS = 8, TASK_REQ_UPIU_SIZE_DWORDS = 8,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment