Hi, On Fri, Apr 22, 2011 at 7:02 PM, Jayachandran C <jayachandranc@xxxxxxxxxxxxxxxxx> wrote: > update ehci-hcd.c and ohci-hcd.c to add XLS hcds > add ehci/ohci devices to XLR/XLS platform driver > Kconfig update > > Signed-off-by: Jayachandran C <jayachandranc@xxxxxxxxxxxxxxxxx> > --- > arch/mips/Kconfig | 2 + > arch/mips/include/asm/netlogic/xlr/xlr.h | 12 ++ > arch/mips/netlogic/xlr/platform.c | 91 ++++++++++++++++ > drivers/usb/host/ehci-hcd.c | 5 + > drivers/usb/host/ehci-xls.c | 170 ++++++++++++++++++++++++++++++ > drivers/usb/host/ohci-hcd.c | 5 + > drivers/usb/host/ohci-xls.c | 160 ++++++++++++++++++++++++++++ > 7 files changed, 445 insertions(+), 0 deletions(-) > create mode 100644 drivers/usb/host/ehci-xls.c > create mode 100644 drivers/usb/host/ohci-xls.c > diff --git a/drivers/usb/host/ehci-xls.c b/drivers/usb/host/ehci-xls.c > new file mode 100644 > index 0000000..54467c6 > --- /dev/null > +++ b/drivers/usb/host/ehci-xls.c > @@ -0,0 +1,170 @@ > +/* > + * OHCI HCD (Host Controller Driver) for USB. > + * > + * (C) Copyright 2011 Netlogic Microsystems Inc. > + * (C) Copyright 1999 Roman Weissgaerber <weissg@xxxxxxxxx> > + * (C) Copyright 2000-2002 David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> > + * (C) Copyright 2002 Hewlett-Packard Company > + * > + * Bus Glue for AMD Alchemy Au1xxx > + * Written by Christopher Hoover <ch@xxxxxxxxxx> > + * Based on fragments of previous driver by Rusell King et al. > + * > + * Modified for LH7A404 from ohci-sa1111.c > + * by Durgesh Pattamatta <pattamattad@xxxxxxxxxxxx> > + * Modified for AMD Alchemy Au1xxx > + * by Matt Porter <mporter@xxxxxxxxxxxxxxxxxxx> > + * > + * This file is licenced under the GPL. > + */ Please correct the comments! I also think that most of the people which are attributed here should be removed. Perhaps simply state which file you used for inspiration? ("derived from ohci-whatever.c"). Manuel