Merge tag 'ceph-for-4.13-rc8' of git://github.com/ceph/ceph-client
[linux/fpc-iii.git] / drivers / usb / host / xhci-rcar.h
blobd247951147a1b9b99772bbd0093667c3f5976634
1 /*
2 * drivers/usb/host/xhci-rcar.h
4 * Copyright (C) 2014 Renesas Electronics Corporation
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
9 */
11 #ifndef _XHCI_RCAR_H
12 #define _XHCI_RCAR_H
14 #define XHCI_RCAR_FIRMWARE_NAME_V1 "r8a779x_usb3_v1.dlmem"
15 #define XHCI_RCAR_FIRMWARE_NAME_V2 "r8a779x_usb3_v2.dlmem"
16 #define XHCI_RCAR_FIRMWARE_NAME_V3 "r8a779x_usb3_v3.dlmem"
18 #if IS_ENABLED(CONFIG_USB_XHCI_RCAR)
19 void xhci_rcar_start(struct usb_hcd *hcd);
20 int xhci_rcar_init_quirk(struct usb_hcd *hcd);
21 int xhci_rcar_resume_quirk(struct usb_hcd *hcd);
22 #else
23 static inline void xhci_rcar_start(struct usb_hcd *hcd)
27 static inline int xhci_rcar_init_quirk(struct usb_hcd *hcd)
29 return 0;
32 static inline int xhci_rcar_resume_quirk(struct usb_hcd *hcd)
34 return 0;
36 #endif
37 #endif /* _XHCI_RCAR_H */