usb-ehci-orion.h 440 B

12345678910111213141516171819202122232425
  1. /*
  2. * This file is licensed under the terms of the GNU General Public
  3. * License version 2. This program is licensed "as is" without any
  4. * warranty of any kind, whether express or implied.
  5. */
  6. #ifndef __USB_EHCI_ORION_H
  7. #define __USB_EHCI_ORION_H
  8. #include <linux/mbus.h>
  9. enum orion_ehci_phy_ver {
  10. EHCI_PHY_ORION,
  11. EHCI_PHY_DD,
  12. EHCI_PHY_KW,
  13. EHCI_PHY_NA,
  14. };
  15. struct orion_ehci_data {
  16. enum orion_ehci_phy_ver phy_version;
  17. };
  18. #endif