net: DCB: Validate DCB_ATTR_DCB_BUFFER argument
[linux/fpc-iii.git] / drivers / usb / host / xhci-mvebu.h
blobca0a3a5721dd720f58e715e302a67b444f8858fd
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (C) 2014 Marvell
5 * Gregory Clement <gregory.clement@free-electrons.com>
6 */
8 #ifndef __LINUX_XHCI_MVEBU_H
9 #define __LINUX_XHCI_MVEBU_H
11 struct usb_hcd;
13 #if IS_ENABLED(CONFIG_USB_XHCI_MVEBU)
14 int xhci_mvebu_mbus_init_quirk(struct usb_hcd *hcd);
15 int xhci_mvebu_a3700_init_quirk(struct usb_hcd *hcd);
16 #else
17 static inline int xhci_mvebu_mbus_init_quirk(struct usb_hcd *hcd)
19 return 0;
22 static inline int xhci_mvebu_a3700_init_quirk(struct usb_hcd *hcd)
24 return 0;
26 #endif
27 #endif /* __LINUX_XHCI_MVEBU_H */