cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

bcm63xx_dev_usb_usbd.h (428B)


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