.. | .. |
---|
1 | | -// SPDX-License-Identifier: GPL-2.0 |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0 */ |
---|
2 | 2 | /* |
---|
3 | 3 | * Copyright (C) 2014 Marvell |
---|
4 | 4 | * |
---|
.. | .. |
---|
12 | 12 | |
---|
13 | 13 | #if IS_ENABLED(CONFIG_USB_XHCI_MVEBU) |
---|
14 | 14 | 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); |
---|
15 | 17 | #else |
---|
16 | 18 | static inline int xhci_mvebu_mbus_init_quirk(struct usb_hcd *hcd) |
---|
17 | 19 | { |
---|
18 | 20 | return 0; |
---|
19 | 21 | } |
---|
| 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 | +} |
---|
20 | 32 | #endif |
---|
21 | 33 | #endif /* __LINUX_XHCI_MVEBU_H */ |
---|