diff options
author | Bart Van Assche <bvanassche@acm.org> | 2022-04-19 15:58:09 -0700 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2022-04-25 23:23:04 -0400 |
commit | 4bc26113c603073363ac96f6f1c7d6389bc0b243 (patch) | |
tree | 2a32ea5372b14eaddc03563b53c77ebf2f9000d4 /drivers/scsi/ufs/ufs-sysfs.c | |
parent | 3f06f7800b80462e8f6aadade6bb823496204e06 (diff) | |
download | linux-stable-4bc26113c603073363ac96f6f1c7d6389bc0b243.tar.gz linux-stable-4bc26113c603073363ac96f6f1c7d6389bc0b243.tar.bz2 linux-stable-4bc26113c603073363ac96f6f1c7d6389bc0b243.zip |
scsi: ufs: Split the ufshcd.h header file
Split the ufshcd.h header file into a header file that defines the
interface used by UFS drivers and another header file with declarations and
data structures only used by the UFS core.
Link: https://lore.kernel.org/r/20220419225811.4127248-27-bvanassche@acm.org
Tested-by: Bean Huo <beanhuo@micron.com>
Reviewed-by: Bean Huo <beanhuo@micron.com>
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/ufs/ufs-sysfs.c')
-rw-r--r-- | drivers/scsi/ufs/ufs-sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/ufs/ufs-sysfs.c b/drivers/scsi/ufs/ufs-sysfs.c index 95a4e64ce401..8a3c6442f291 100644 --- a/drivers/scsi/ufs/ufs-sysfs.c +++ b/drivers/scsi/ufs/ufs-sysfs.c @@ -8,7 +8,7 @@ #include "ufs.h" #include "ufs-sysfs.h" -#include "ufshcd.h" +#include "ufshcd-priv.h" static const char *ufshcd_uic_link_state_to_string( enum uic_link_state state) |