mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-26 00:32:25 +02:00
[adm5120] add copyright header to the USB driver's files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9657 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
863d4e55d3
commit
b4f5ad4506
@ -1,6 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* OHCI HCD (Host Controller Driver) for USB.
|
* ADM5120 HCD (Host Controller Driver) for USB
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
|
||||||
|
*
|
||||||
|
* This file was derived from: drivers/usb/host/ohci-dbg.c
|
||||||
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
||||||
* (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
|
* (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
@ -676,4 +679,3 @@ static inline void remove_debug_files (struct admhcd *ahcd)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*-------------------------------------------------------------------------*/
|
/*-------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
* OHCI HCD (Host Controller Driver) for USB.
|
* ADM5120 HCD (Host Controller Driver) for USB
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
|
||||||
|
*
|
||||||
|
* This file was derived from: drivers/usb/host/ohci-au1xxx.c
|
||||||
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
||||||
* (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
|
* (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
|
||||||
* (C) Copyright 2002 Hewlett-Packard Company
|
* (C) Copyright 2002 Hewlett-Packard Company
|
||||||
*
|
*
|
||||||
* Bus Glue for AMD Alchemy Au1xxx
|
|
||||||
*
|
|
||||||
* Written by Christopher Hoover <ch@hpl.hp.com>
|
* Written by Christopher Hoover <ch@hpl.hp.com>
|
||||||
* Based on fragments of previous driver by Rusell King et al.
|
* Based on fragments of previous driver by Rusell King et al.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* OHCI HCD (Host Controller Driver) for USB.
|
* ADM5120 HCD (Host Controller Driver) for USB
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
|
||||||
|
*
|
||||||
|
* This file was derived from: drivers/usb/host/ohci-hcd.c
|
||||||
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
||||||
* (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
|
* (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
@ -9,12 +12,6 @@
|
|||||||
* [ (C) Copyright 1999 Linus Torvalds ]
|
* [ (C) Copyright 1999 Linus Torvalds ]
|
||||||
* [ (C) Copyright 1999 Gregory P. Smith]
|
* [ (C) Copyright 1999 Gregory P. Smith]
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* OHCI is the main "non-Intel/VIA" standard for USB 1.1 host controller
|
|
||||||
* interfaces (though some non-x86 Intel chips use it). It supports
|
|
||||||
* smarter hardware than UHCI. A download link for the spec available
|
|
||||||
* through the http://www.usb.org website.
|
|
||||||
*
|
|
||||||
* This file is licenced under the GPL.
|
* This file is licenced under the GPL.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -45,7 +42,7 @@
|
|||||||
#include "../core/hcd.h"
|
#include "../core/hcd.h"
|
||||||
#include "../core/hub.h"
|
#include "../core/hub.h"
|
||||||
|
|
||||||
#define DRIVER_VERSION "v0.14.0"
|
#define DRIVER_VERSION "0.14.1"
|
||||||
#define DRIVER_AUTHOR "Gabor Juhos <juhosg at openwrt.org>"
|
#define DRIVER_AUTHOR "Gabor Juhos <juhosg at openwrt.org>"
|
||||||
#define DRIVER_DESC "ADMtek USB 1.1 Host Controller Driver"
|
#define DRIVER_DESC "ADMtek USB 1.1 Host Controller Driver"
|
||||||
|
|
||||||
@ -788,7 +785,7 @@ static void admhc_stop(struct usb_hcd *hcd)
|
|||||||
#error "missing bus glue for admhc-hcd"
|
#error "missing bus glue for admhc-hcd"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DRIVER_INFO DRIVER_DESC " " DRIVER_VERSION
|
#define DRIVER_INFO DRIVER_DESC " version " DRIVER_VERSION
|
||||||
|
|
||||||
static int __init admhc_hcd_mod_init(void)
|
static int __init admhc_hcd_mod_init(void)
|
||||||
{
|
{
|
||||||
@ -825,4 +822,5 @@ module_exit(admhc_hcd_mod_exit);
|
|||||||
|
|
||||||
MODULE_AUTHOR(DRIVER_AUTHOR);
|
MODULE_AUTHOR(DRIVER_AUTHOR);
|
||||||
MODULE_DESCRIPTION(DRIVER_INFO);
|
MODULE_DESCRIPTION(DRIVER_INFO);
|
||||||
|
MODULE_VERSION(DRIVER_VERSION);
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
@ -1,16 +1,19 @@
|
|||||||
/*
|
/*
|
||||||
* OHCI HCD (Host Controller Driver) for USB.
|
* ADM5120 HCD (Host Controller Driver) for USB
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
|
||||||
|
*
|
||||||
|
* This file was derived from: drivers/usb/host/ohci-hub.c
|
||||||
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
||||||
* (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
|
* (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This file is licenced under GPL
|
* This file is licenced under the GPL.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*-------------------------------------------------------------------------*/
|
/*-------------------------------------------------------------------------*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* OHCI Root Hub ... the nonsharable stuff
|
* ADM5120 Root Hub ... the nonsharable stuff
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define dbg_port(hc,label,num,value) \
|
#define dbg_port(hc,label,num,value) \
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* OHCI HCD (Host Controller Driver) for USB.
|
* ADM5120 HCD (Host Controller Driver) for USB
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
|
||||||
|
*
|
||||||
|
* This file was derived from: drivers/usb/host/ohci-mem.c
|
||||||
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
||||||
* (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
|
* (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
|
@ -1,10 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
* OHCI HCD (Host Controller Driver) for USB.
|
* ADM5120 HCD (Host Controller Driver) for USB
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
|
||||||
|
*
|
||||||
|
* This file was derived from fragments of the OHCI driver.
|
||||||
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
||||||
* (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
|
* (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This file is licenced under GPL
|
* This file is licenced under the GPL.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define OHCI_SCHED_ENABLES \
|
#define OHCI_SCHED_ENABLES \
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* OHCI HCD (Host Controller Driver) for USB.
|
* ADM5120 HCD (Host Controller Driver) for USB
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
|
||||||
|
*
|
||||||
|
* This file was derived from: drivers/usb/host/ohci-q.c
|
||||||
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
||||||
* (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
|
* (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* OHCI HCD (Host Controller Driver) for USB.
|
* ADM5120 HCD (Host Controller Driver) for USB
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
|
||||||
|
*
|
||||||
|
* This file was derived from: drivers/usb/host/ohci.h
|
||||||
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
* (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
|
||||||
* (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
|
* (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user