linux/include/linux/platform_data/usb-ehci-orion.h
<<
>>
Prefs
   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
   7#ifndef __USB_EHCI_ORION_H
   8#define __USB_EHCI_ORION_H
   9
  10#include <linux/mbus.h>
  11
  12enum orion_ehci_phy_ver {
  13        EHCI_PHY_ORION,
  14        EHCI_PHY_DD,
  15        EHCI_PHY_KW,
  16        EHCI_PHY_NA,
  17};
  18
  19struct orion_ehci_data {
  20        enum orion_ehci_phy_ver phy_version;
  21};
  22
  23
  24#endif
  25