forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/drivers/usb/host/xhci-mvebu.h
....@@ -1,4 +1,4 @@
1
-// SPDX-License-Identifier: GPL-2.0
1
+/* SPDX-License-Identifier: GPL-2.0 */
22 /*
33 * Copyright (C) 2014 Marvell
44 *
....@@ -12,10 +12,22 @@
1212
1313 #if IS_ENABLED(CONFIG_USB_XHCI_MVEBU)
1414 int xhci_mvebu_mbus_init_quirk(struct usb_hcd *hcd);
15
+int xhci_mvebu_a3700_plat_setup(struct usb_hcd *hcd);
16
+int xhci_mvebu_a3700_init_quirk(struct usb_hcd *hcd);
1517 #else
1618 static inline int xhci_mvebu_mbus_init_quirk(struct usb_hcd *hcd)
1719 {
1820 return 0;
1921 }
22
+
23
+static inline int xhci_mvebu_a3700_plat_setup(struct usb_hcd *hcd)
24
+{
25
+ return 0;
26
+}
27
+
28
+static inline int xhci_mvebu_a3700_init_quirk(struct usb_hcd *hcd)
29
+{
30
+ return 0;
31
+}
2032 #endif
2133 #endif /* __LINUX_XHCI_MVEBU_H */