fhci-mem.c (3a20ac2c52b1317f5a5f0bd9cd3cbe8495ddd026) | fhci-mem.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> --- 4 unchanged lines hidden (view full) --- 13 * under the terms of the GNU General Public License as published by the 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/delay.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> --- 4 unchanged lines hidden (view full) --- 13 * under the terms of the GNU General Public License as published by the 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/delay.h> |
21#include <linux/slab.h> |
|
21#include <linux/list.h> 22#include <linux/usb.h> 23#include "../core/hcd.h" 24#include "fhci.h" 25 26static void init_td(struct td *td) 27{ 28 memset(td, 0, sizeof(*td)); --- 85 unchanged lines hidden --- | 22#include <linux/list.h> 23#include <linux/usb.h> 24#include "../core/hcd.h" 25#include "fhci.h" 26 27static void init_td(struct td *td) 28{ 29 memset(td, 0, sizeof(*td)); --- 85 unchanged lines hidden --- |