fhci-q.c (3a20ac2c52b1317f5a5f0bd9cd3cbe8495ddd026) | fhci-q.c (5a0e3ad6af8660be21ca98a971cd00f331318c05) |
---|---|
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> --- 5 unchanged lines hidden (view full) --- 14 * Free Software Foundation; either version 2 of the License, or (at your 15 * option) any later version. 16 */ 17 18#include <linux/kernel.h> 19#include <linux/types.h> 20#include <linux/spinlock.h> 21#include <linux/errno.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> --- 5 unchanged lines hidden (view full) --- 14 * Free Software Foundation; either version 2 of the License, or (at your 15 * option) any later version. 16 */ 17 18#include <linux/kernel.h> 19#include <linux/types.h> 20#include <linux/spinlock.h> 21#include <linux/errno.h> |
22#include <linux/slab.h> |
|
22#include <linux/list.h> 23#include <linux/usb.h> 24#include "../core/hcd.h" 25#include "fhci.h" 26 27/* maps the hardware error code to the USB error code */ 28static int status_to_error(u32 status) 29{ --- 255 unchanged lines hidden --- | 23#include <linux/list.h> 24#include <linux/usb.h> 25#include "../core/hcd.h" 26#include "fhci.h" 27 28/* maps the hardware error code to the USB error code */ 29static int status_to_error(u32 status) 30{ --- 255 unchanged lines hidden --- |