hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef BCM63XX_DEV_USB_USBD_H_
#define BCM63XX_DEV_USB_USBD_H_
 
/*
 * usb device platform data
 */
struct bcm63xx_usbd_platform_data {
   /* board can only support full speed (USB 1.1) */
   int use_fullspeed;
 
   /* 0-based port index, for chips with >1 USB PHY */
   int port_no;
};
 
int bcm63xx_usbd_register(const struct bcm63xx_usbd_platform_data *pd);
 
#endif /* BCM63XX_DEV_USB_USBD_H_ */