fhci-hub.c (01b944fe1cd4e21a2a9ed51adbdbafe2d5e905ba) | fhci-hub.c (7aa1aa6ecec2af19d9aa85430ce3e56119e21626) |
---|---|
1/* 2 * Freescale QUICC Engine USB Host Controller Driver 3 * 4 * Copyright (c) Freescale Semicondutor, Inc. 2006. 5 * Shlomi Gridish <gridish@freescale.com> 6 * Jerry Huang <Chang-Ming.Huang@freescale.com> 7 * Copyright (c) Logic Product Development, Inc. 2007 8 * Peter Barada <peterb@logicpd.com> --- 10 unchanged lines hidden (view full) --- 19#include <linux/types.h> 20#include <linux/spinlock.h> 21#include <linux/delay.h> 22#include <linux/errno.h> 23#include <linux/io.h> 24#include <linux/usb.h> 25#include <linux/usb/hcd.h> 26#include <linux/gpio.h> | 1/* 2 * Freescale QUICC Engine USB Host Controller Driver 3 * 4 * Copyright (c) Freescale Semicondutor, Inc. 2006. 5 * Shlomi Gridish <gridish@freescale.com> 6 * Jerry Huang <Chang-Ming.Huang@freescale.com> 7 * Copyright (c) Logic Product Development, Inc. 2007 8 * Peter Barada <peterb@logicpd.com> --- 10 unchanged lines hidden (view full) --- 19#include <linux/types.h> 20#include <linux/spinlock.h> 21#include <linux/delay.h> 22#include <linux/errno.h> 23#include <linux/io.h> 24#include <linux/usb.h> 25#include <linux/usb/hcd.h> 26#include <linux/gpio.h> |
27#include <asm/qe.h> | 27#include <soc/fsl/qe/qe.h> |
28#include "fhci.h" 29 30/* virtual root hub specific descriptor */ 31static u8 root_hub_des[] = { 32 0x09, /* blength */ 33 USB_DT_HUB, /* bDescriptorType;hub-descriptor */ 34 0x01, /* bNbrPorts */ 35 HUB_CHAR_INDV_PORT_LPSM | HUB_CHAR_NO_OCPM, /* wHubCharacteristics */ --- 305 unchanged lines hidden --- | 28#include "fhci.h" 29 30/* virtual root hub specific descriptor */ 31static u8 root_hub_des[] = { 32 0x09, /* blength */ 33 USB_DT_HUB, /* bDescriptorType;hub-descriptor */ 34 0x01, /* bNbrPorts */ 35 HUB_CHAR_INDV_PORT_LPSM | HUB_CHAR_NO_OCPM, /* wHubCharacteristics */ --- 305 unchanged lines hidden --- |