summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRui Feng <rui_feng@realsil.com.cn>2017-11-29 04:08:03 -0500
committerLee Jones <lee.jones@linaro.org>2017-11-29 05:16:44 -0500
commite455b69ddf9b69326d0cab28d374faf3325489c9 (patch)
tree5a2f01003865ccbd1826b5f068bcec31dfe7d16d
parent4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff)
misc: rtsx: Move Realtek Card Reader Driver to misc
Because Realtek card reader drivers are pcie and usb drivers, and they bridge mmc subsystem and memstick subsystem, they are not mfd drivers. Greg and Lee Jones had a discussion about where to put the drivers, the result is that misc is a good place for them, so I move all files to misc. If I don't move them to a right place, I can't add any patch for this driver. Signed-off-by: Rui Feng <rui_feng@realsil.com.cn> Reviewed-by: Daniel Bristot de Oliveira <bristot@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Tested-by: Perry Yuan <perry_yuan@dell.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r--drivers/memstick/host/Kconfig4
-rw-r--r--drivers/memstick/host/rtsx_pci_ms.c2
-rw-r--r--drivers/memstick/host/rtsx_usb_ms.c2
-rw-r--r--drivers/mfd/Kconfig21
-rw-r--r--drivers/mfd/Makefile4
-rw-r--r--drivers/misc/Kconfig5
-rw-r--r--drivers/misc/Makefile1
-rw-r--r--drivers/misc/cardreader/Kconfig20
-rw-r--r--drivers/misc/cardreader/Makefile4
-rw-r--r--drivers/misc/cardreader/rtl8411.c (renamed from drivers/mfd/rtl8411.c)2
-rw-r--r--drivers/misc/cardreader/rts5209.c (renamed from drivers/mfd/rts5209.c)2
-rw-r--r--drivers/misc/cardreader/rts5227.c (renamed from drivers/mfd/rts5227.c)2
-rw-r--r--drivers/misc/cardreader/rts5229.c (renamed from drivers/mfd/rts5229.c)2
-rw-r--r--drivers/misc/cardreader/rts5249.c (renamed from drivers/mfd/rts5249.c)3
-rw-r--r--drivers/misc/cardreader/rtsx_pcr.c (renamed from drivers/mfd/rtsx_pcr.c)2
-rw-r--r--drivers/misc/cardreader/rtsx_pcr.h (renamed from drivers/mfd/rtsx_pcr.h)2
-rw-r--r--drivers/misc/cardreader/rtsx_usb.c (renamed from drivers/mfd/rtsx_usb.c)2
-rw-r--r--drivers/mmc/host/Kconfig4
-rw-r--r--drivers/mmc/host/rtsx_pci_sdmmc.c2
-rw-r--r--drivers/mmc/host/rtsx_usb_sdmmc.c2
-rw-r--r--include/linux/rtsx_common.h (renamed from include/linux/mfd/rtsx_common.h)0
-rw-r--r--include/linux/rtsx_pci.h (renamed from include/linux/mfd/rtsx_pci.h)2
-rw-r--r--include/linux/rtsx_usb.h (renamed from include/linux/mfd/rtsx_usb.h)0
23 files changed, 47 insertions, 43 deletions
diff --git a/drivers/memstick/host/Kconfig b/drivers/memstick/host/Kconfig
index 7310e32b5991..aa2b0786bbe9 100644
--- a/drivers/memstick/host/Kconfig
+++ b/drivers/memstick/host/Kconfig
@@ -45,7 +45,7 @@ config MEMSTICK_R592
45 45
46config MEMSTICK_REALTEK_PCI 46config MEMSTICK_REALTEK_PCI
47 tristate "Realtek PCI-E Memstick Card Interface Driver" 47 tristate "Realtek PCI-E Memstick Card Interface Driver"
48 depends on MFD_RTSX_PCI 48 depends on MISC_RTSX_PCI
49 help 49 help
50 Say Y here to include driver code to support Memstick card interface 50 Say Y here to include driver code to support Memstick card interface
51 of Realtek PCI-E card reader 51 of Realtek PCI-E card reader
@@ -55,7 +55,7 @@ config MEMSTICK_REALTEK_PCI
55 55
56config MEMSTICK_REALTEK_USB 56config MEMSTICK_REALTEK_USB
57 tristate "Realtek USB Memstick Card Interface Driver" 57 tristate "Realtek USB Memstick Card Interface Driver"
58 depends on MFD_RTSX_USB 58 depends on MISC_RTSX_USB
59 help 59 help
60 Say Y here to include driver code to support Memstick card interface 60 Say Y here to include driver code to support Memstick card interface
61 of Realtek RTS5129/39 series USB card reader 61 of Realtek RTS5129/39 series USB card reader
diff --git a/drivers/memstick/host/rtsx_pci_ms.c b/drivers/memstick/host/rtsx_pci_ms.c
index 818fa94354ae..a44b4578ba4d 100644
--- a/drivers/memstick/host/rtsx_pci_ms.c
+++ b/drivers/memstick/host/rtsx_pci_ms.c
@@ -24,7 +24,7 @@
24#include <linux/delay.h> 24#include <linux/delay.h>
25#include <linux/platform_device.h> 25#include <linux/platform_device.h>
26#include <linux/memstick.h> 26#include <linux/memstick.h>
27#include <linux/mfd/rtsx_pci.h> 27#include <linux/rtsx_pci.h>
28#include <asm/unaligned.h> 28#include <asm/unaligned.h>
29 29
30struct realtek_pci_ms { 30struct realtek_pci_ms {
diff --git a/drivers/memstick/host/rtsx_usb_ms.c b/drivers/memstick/host/rtsx_usb_ms.c
index 2e3cf012ef48..4f64563df7de 100644
--- a/drivers/memstick/host/rtsx_usb_ms.c
+++ b/drivers/memstick/host/rtsx_usb_ms.c
@@ -25,7 +25,7 @@
25#include <linux/workqueue.h> 25#include <linux/workqueue.h>
26#include <linux/memstick.h> 26#include <linux/memstick.h>
27#include <linux/kthread.h> 27#include <linux/kthread.h>
28#include <linux/mfd/rtsx_usb.h> 28#include <linux/rtsx_usb.h>
29#include <linux/pm_runtime.h> 29#include <linux/pm_runtime.h>
30#include <linux/mutex.h> 30#include <linux/mutex.h>
31#include <linux/sched.h> 31#include <linux/sched.h>
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index 1d20a800e967..1246ba1832d7 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -929,17 +929,6 @@ config MFD_RDC321X
929 southbridge which provides access to GPIOs and Watchdog using the 929 southbridge which provides access to GPIOs and Watchdog using the
930 southbridge PCI device configuration space. 930 southbridge PCI device configuration space.
931 931
932config MFD_RTSX_PCI
933 tristate "Realtek PCI-E card reader"
934 depends on PCI
935 select MFD_CORE
936 help
937 This supports for Realtek PCI-Express card reader including rts5209,
938 rts5227, rts522A, rts5229, rts5249, rts524A, rts525A, rtl8411, etc.
939 Realtek card reader supports access to many types of memory cards,
940 such as Memory Stick, Memory Stick Pro, Secure Digital and
941 MultiMediaCard.
942
943config MFD_RT5033 932config MFD_RT5033
944 tristate "Richtek RT5033 Power Management IC" 933 tristate "Richtek RT5033 Power Management IC"
945 depends on I2C 934 depends on I2C
@@ -953,16 +942,6 @@ config MFD_RT5033
953 sub-devices like charger, fuel gauge, flash LED, current source, 942 sub-devices like charger, fuel gauge, flash LED, current source,
954 LDO and Buck. 943 LDO and Buck.
955 944
956config MFD_RTSX_USB
957 tristate "Realtek USB card reader"
958 depends on USB
959 select MFD_CORE
960 help
961 Select this option to get support for Realtek USB 2.0 card readers
962 including RTS5129, RTS5139, RTS5179 and RTS5170.
963 Realtek card reader supports access to many types of memory cards,
964 such as Memory Stick Pro, Secure Digital and MultiMediaCard.
965
966config MFD_RC5T583 945config MFD_RC5T583
967 bool "Ricoh RC5T583 Power Management system device" 946 bool "Ricoh RC5T583 Power Management system device"
968 depends on I2C=y 947 depends on I2C=y
diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile
index d9474ade32e6..293e223c373d 100644
--- a/drivers/mfd/Makefile
+++ b/drivers/mfd/Makefile
@@ -19,10 +19,6 @@ obj-$(CONFIG_MFD_CROS_EC_I2C) += cros_ec_i2c.o
19obj-$(CONFIG_MFD_CROS_EC_SPI) += cros_ec_spi.o 19obj-$(CONFIG_MFD_CROS_EC_SPI) += cros_ec_spi.o
20obj-$(CONFIG_MFD_EXYNOS_LPASS) += exynos-lpass.o 20obj-$(CONFIG_MFD_EXYNOS_LPASS) += exynos-lpass.o
21 21
22rtsx_pci-objs := rtsx_pcr.o rts5209.o rts5229.o rtl8411.o rts5227.o rts5249.o
23obj-$(CONFIG_MFD_RTSX_PCI) += rtsx_pci.o
24obj-$(CONFIG_MFD_RTSX_USB) += rtsx_usb.o
25
26obj-$(CONFIG_HTC_PASIC3) += htc-pasic3.o 22obj-$(CONFIG_HTC_PASIC3) += htc-pasic3.o
27obj-$(CONFIG_HTC_I2CPLD) += htc-i2cpld.o 23obj-$(CONFIG_HTC_I2CPLD) += htc-i2cpld.o
28 24
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig
index f1a5c2357b14..7c0fa24f9067 100644
--- a/drivers/misc/Kconfig
+++ b/drivers/misc/Kconfig
@@ -496,6 +496,10 @@ config PCI_ENDPOINT_TEST
496 Enable this configuration option to enable the host side test driver 496 Enable this configuration option to enable the host side test driver
497 for PCI Endpoint. 497 for PCI Endpoint.
498 498
499config MISC_RTSX
500 tristate
501 default MISC_RTSX_PCI || MISC_RTSX_USB
502
499source "drivers/misc/c2port/Kconfig" 503source "drivers/misc/c2port/Kconfig"
500source "drivers/misc/eeprom/Kconfig" 504source "drivers/misc/eeprom/Kconfig"
501source "drivers/misc/cb710/Kconfig" 505source "drivers/misc/cb710/Kconfig"
@@ -508,4 +512,5 @@ source "drivers/misc/mic/Kconfig"
508source "drivers/misc/genwqe/Kconfig" 512source "drivers/misc/genwqe/Kconfig"
509source "drivers/misc/echo/Kconfig" 513source "drivers/misc/echo/Kconfig"
510source "drivers/misc/cxl/Kconfig" 514source "drivers/misc/cxl/Kconfig"
515source "drivers/misc/cardreader/Kconfig"
511endmenu 516endmenu
diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile
index 5ca5f64df478..8d8cc096063b 100644
--- a/drivers/misc/Makefile
+++ b/drivers/misc/Makefile
@@ -55,6 +55,7 @@ obj-$(CONFIG_CXL_BASE) += cxl/
55obj-$(CONFIG_ASPEED_LPC_CTRL) += aspeed-lpc-ctrl.o 55obj-$(CONFIG_ASPEED_LPC_CTRL) += aspeed-lpc-ctrl.o
56obj-$(CONFIG_ASPEED_LPC_SNOOP) += aspeed-lpc-snoop.o 56obj-$(CONFIG_ASPEED_LPC_SNOOP) += aspeed-lpc-snoop.o
57obj-$(CONFIG_PCI_ENDPOINT_TEST) += pci_endpoint_test.o 57obj-$(CONFIG_PCI_ENDPOINT_TEST) += pci_endpoint_test.o
58obj-$(CONFIG_MISC_RTSX) += cardreader/
58 59
59lkdtm-$(CONFIG_LKDTM) += lkdtm_core.o 60lkdtm-$(CONFIG_LKDTM) += lkdtm_core.o
60lkdtm-$(CONFIG_LKDTM) += lkdtm_bugs.o 61lkdtm-$(CONFIG_LKDTM) += lkdtm_bugs.o
diff --git a/drivers/misc/cardreader/Kconfig b/drivers/misc/cardreader/Kconfig
new file mode 100644
index 000000000000..e7d835a160bb
--- /dev/null
+++ b/drivers/misc/cardreader/Kconfig
@@ -0,0 +1,20 @@
1config MISC_RTSX_PCI
2 tristate "Realtek PCI-E card reader"
3 depends on PCI
4 select MFD_CORE
5 help
6 This supports for Realtek PCI-Express card reader including rts5209,
7 rts5227, rts522A, rts5229, rts5249, rts524A, rts525A, rtl8411.
8 Realtek card readers support access to many types of memory cards,
9 such as Memory Stick, Memory Stick Pro, Secure Digital and
10 MultiMediaCard.
11
12config MISC_RTSX_USB
13 tristate "Realtek USB card reader"
14 depends on USB
15 select MFD_CORE
16 help
17 Select this option to get support for Realtek USB 2.0 card readers
18 including RTS5129, RTS5139, RTS5179 and RTS5170.
19 Realtek card reader supports access to many types of memory cards,
20 such as Memory Stick Pro, Secure Digital and MultiMediaCard.
diff --git a/drivers/misc/cardreader/Makefile b/drivers/misc/cardreader/Makefile
new file mode 100644
index 000000000000..78337b24fc62
--- /dev/null
+++ b/drivers/misc/cardreader/Makefile
@@ -0,0 +1,4 @@
1rtsx_pci-objs := rtsx_pcr.o rts5209.o rts5229.o rtl8411.o rts5227.o rts5249.o
2
3obj-$(CONFIG_MISC_RTSX_PCI) += rtsx_pci.o
4obj-$(CONFIG_MISC_RTSX_USB) += rtsx_usb.o
diff --git a/drivers/mfd/rtl8411.c b/drivers/misc/cardreader/rtl8411.c
index b3ae6592014a..434fd070d3e3 100644
--- a/drivers/mfd/rtl8411.c
+++ b/drivers/misc/cardreader/rtl8411.c
@@ -23,7 +23,7 @@
23#include <linux/module.h> 23#include <linux/module.h>
24#include <linux/bitops.h> 24#include <linux/bitops.h>
25#include <linux/delay.h> 25#include <linux/delay.h>
26#include <linux/mfd/rtsx_pci.h> 26#include <linux/rtsx_pci.h>
27 27
28#include "rtsx_pcr.h" 28#include "rtsx_pcr.h"
29 29
diff --git a/drivers/mfd/rts5209.c b/drivers/misc/cardreader/rts5209.c
index b95beecf767f..ce68c48d8ec9 100644
--- a/drivers/mfd/rts5209.c
+++ b/drivers/misc/cardreader/rts5209.c
@@ -21,7 +21,7 @@
21 21
22#include <linux/module.h> 22#include <linux/module.h>
23#include <linux/delay.h> 23#include <linux/delay.h>
24#include <linux/mfd/rtsx_pci.h> 24#include <linux/rtsx_pci.h>
25 25
26#include "rtsx_pcr.h" 26#include "rtsx_pcr.h"
27 27
diff --git a/drivers/mfd/rts5227.c b/drivers/misc/cardreader/rts5227.c
index ff296a4bf3d2..024dcba8d6c8 100644
--- a/drivers/mfd/rts5227.c
+++ b/drivers/misc/cardreader/rts5227.c
@@ -22,7 +22,7 @@
22 22
23#include <linux/module.h> 23#include <linux/module.h>
24#include <linux/delay.h> 24#include <linux/delay.h>
25#include <linux/mfd/rtsx_pci.h> 25#include <linux/rtsx_pci.h>
26 26
27#include "rtsx_pcr.h" 27#include "rtsx_pcr.h"
28 28
diff --git a/drivers/mfd/rts5229.c b/drivers/misc/cardreader/rts5229.c
index 9ed9dc84eac8..9119261337cc 100644
--- a/drivers/mfd/rts5229.c
+++ b/drivers/misc/cardreader/rts5229.c
@@ -21,7 +21,7 @@
21 21
22#include <linux/module.h> 22#include <linux/module.h>
23#include <linux/delay.h> 23#include <linux/delay.h>
24#include <linux/mfd/rtsx_pci.h> 24#include <linux/rtsx_pci.h>
25 25
26#include "rtsx_pcr.h" 26#include "rtsx_pcr.h"
27 27
diff --git a/drivers/mfd/rts5249.c b/drivers/misc/cardreader/rts5249.c
index 7fcf37ba922c..dbe013abdb83 100644
--- a/drivers/mfd/rts5249.c
+++ b/drivers/misc/cardreader/rts5249.c
@@ -21,7 +21,7 @@
21 21
22#include <linux/module.h> 22#include <linux/module.h>
23#include <linux/delay.h> 23#include <linux/delay.h>
24#include <linux/mfd/rtsx_pci.h> 24#include <linux/rtsx_pci.h>
25 25
26#include "rtsx_pcr.h" 26#include "rtsx_pcr.h"
27 27
@@ -738,4 +738,3 @@ void rts525a_init_params(struct rtsx_pcr *pcr)
738 pcr->reg_pm_ctrl3 = RTS524A_PM_CTRL3; 738 pcr->reg_pm_ctrl3 = RTS524A_PM_CTRL3;
739 pcr->ops = &rts525a_pcr_ops; 739 pcr->ops = &rts525a_pcr_ops;
740} 740}
741
diff --git a/drivers/mfd/rtsx_pcr.c b/drivers/misc/cardreader/rtsx_pcr.c
index 590fb9aad77d..b60bd2a3ba64 100644
--- a/drivers/mfd/rtsx_pcr.c
+++ b/drivers/misc/cardreader/rtsx_pcr.c
@@ -29,7 +29,7 @@
29#include <linux/idr.h> 29#include <linux/idr.h>
30#include <linux/platform_device.h> 30#include <linux/platform_device.h>
31#include <linux/mfd/core.h> 31#include <linux/mfd/core.h>
32#include <linux/mfd/rtsx_pci.h> 32#include <linux/rtsx_pci.h>
33#include <linux/mmc/card.h> 33#include <linux/mmc/card.h>
34#include <asm/unaligned.h> 34#include <asm/unaligned.h>
35 35
diff --git a/drivers/mfd/rtsx_pcr.h b/drivers/misc/cardreader/rtsx_pcr.h
index ec784e04fe20..b0691c95b103 100644
--- a/drivers/mfd/rtsx_pcr.h
+++ b/drivers/misc/cardreader/rtsx_pcr.h
@@ -22,7 +22,7 @@
22#ifndef __RTSX_PCR_H 22#ifndef __RTSX_PCR_H
23#define __RTSX_PCR_H 23#define __RTSX_PCR_H
24 24
25#include <linux/mfd/rtsx_pci.h> 25#include <linux/rtsx_pci.h>
26 26
27#define MIN_DIV_N_PCR 80 27#define MIN_DIV_N_PCR 80
28#define MAX_DIV_N_PCR 208 28#define MAX_DIV_N_PCR 208
diff --git a/drivers/mfd/rtsx_usb.c b/drivers/misc/cardreader/rtsx_usb.c
index 59d61b04c197..b97903ff1a72 100644
--- a/drivers/mfd/rtsx_usb.c
+++ b/drivers/misc/cardreader/rtsx_usb.c
@@ -23,7 +23,7 @@
23#include <linux/usb.h> 23#include <linux/usb.h>
24#include <linux/platform_device.h> 24#include <linux/platform_device.h>
25#include <linux/mfd/core.h> 25#include <linux/mfd/core.h>
26#include <linux/mfd/rtsx_usb.h> 26#include <linux/rtsx_usb.h>
27 27
28static int polling_pipe = 1; 28static int polling_pipe = 1;
29module_param(polling_pipe, int, S_IRUGO | S_IWUSR); 29module_param(polling_pipe, int, S_IRUGO | S_IWUSR);
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig
index 567028c9219a..cec8152b5ede 100644
--- a/drivers/mmc/host/Kconfig
+++ b/drivers/mmc/host/Kconfig
@@ -838,14 +838,14 @@ config MMC_USDHI6ROL0
838 838
839config MMC_REALTEK_PCI 839config MMC_REALTEK_PCI
840 tristate "Realtek PCI-E SD/MMC Card Interface Driver" 840 tristate "Realtek PCI-E SD/MMC Card Interface Driver"
841 depends on MFD_RTSX_PCI 841 depends on MISC_RTSX_PCI
842 help 842 help
843 Say Y here to include driver code to support SD/MMC card interface 843 Say Y here to include driver code to support SD/MMC card interface
844 of Realtek PCI-E card reader 844 of Realtek PCI-E card reader
845 845
846config MMC_REALTEK_USB 846config MMC_REALTEK_USB
847 tristate "Realtek USB SD/MMC Card Interface Driver" 847 tristate "Realtek USB SD/MMC Card Interface Driver"
848 depends on MFD_RTSX_USB 848 depends on MISC_RTSX_USB
849 help 849 help
850 Say Y here to include driver code to support SD/MMC card interface 850 Say Y here to include driver code to support SD/MMC card interface
851 of Realtek RTS5129/39 series card reader 851 of Realtek RTS5129/39 series card reader
diff --git a/drivers/mmc/host/rtsx_pci_sdmmc.c b/drivers/mmc/host/rtsx_pci_sdmmc.c
index 0848dc0f882e..30bd8081307e 100644
--- a/drivers/mmc/host/rtsx_pci_sdmmc.c
+++ b/drivers/mmc/host/rtsx_pci_sdmmc.c
@@ -30,7 +30,7 @@
30#include <linux/mmc/sd.h> 30#include <linux/mmc/sd.h>
31#include <linux/mmc/sdio.h> 31#include <linux/mmc/sdio.h>
32#include <linux/mmc/card.h> 32#include <linux/mmc/card.h>
33#include <linux/mfd/rtsx_pci.h> 33#include <linux/rtsx_pci.h>
34#include <asm/unaligned.h> 34#include <asm/unaligned.h>
35 35
36struct realtek_pci_sdmmc { 36struct realtek_pci_sdmmc {
diff --git a/drivers/mmc/host/rtsx_usb_sdmmc.c b/drivers/mmc/host/rtsx_usb_sdmmc.c
index 76da1687ab37..78422079ecfa 100644
--- a/drivers/mmc/host/rtsx_usb_sdmmc.c
+++ b/drivers/mmc/host/rtsx_usb_sdmmc.c
@@ -31,7 +31,7 @@
31#include <linux/scatterlist.h> 31#include <linux/scatterlist.h>
32#include <linux/pm_runtime.h> 32#include <linux/pm_runtime.h>
33 33
34#include <linux/mfd/rtsx_usb.h> 34#include <linux/rtsx_usb.h>
35#include <asm/unaligned.h> 35#include <asm/unaligned.h>
36 36
37#if defined(CONFIG_LEDS_CLASS) || (defined(CONFIG_LEDS_CLASS_MODULE) && \ 37#if defined(CONFIG_LEDS_CLASS) || (defined(CONFIG_LEDS_CLASS_MODULE) && \
diff --git a/include/linux/mfd/rtsx_common.h b/include/linux/rtsx_common.h
index 443176ee1ab0..443176ee1ab0 100644
--- a/include/linux/mfd/rtsx_common.h
+++ b/include/linux/rtsx_common.h
diff --git a/include/linux/mfd/rtsx_pci.h b/include/linux/rtsx_pci.h
index a2a1318a3d0c..82abac70b3db 100644
--- a/include/linux/mfd/rtsx_pci.h
+++ b/include/linux/rtsx_pci.h
@@ -24,7 +24,7 @@
24 24
25#include <linux/sched.h> 25#include <linux/sched.h>
26#include <linux/pci.h> 26#include <linux/pci.h>
27#include <linux/mfd/rtsx_common.h> 27#include <linux/rtsx_common.h>
28 28
29#define MAX_RW_REG_CNT 1024 29#define MAX_RW_REG_CNT 1024
30 30
diff --git a/include/linux/mfd/rtsx_usb.h b/include/linux/rtsx_usb.h
index c446e4fd6b5c..c446e4fd6b5c 100644
--- a/include/linux/mfd/rtsx_usb.h
+++ b/include/linux/rtsx_usb.h