usb: dwc3: Modify the file headers to u-boot format

Modified the file header to the format that is used in u-boot. Also
included in the header, the commit in linux kernel from which each of
these files are added.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
This commit is contained in:
Kishon Vijay Abraham I 2015-02-23 18:39:52 +05:30 committed by Marek Vasut
parent 97798eb96d
commit 30c31d5897
7 changed files with 45 additions and 58 deletions

View File

@ -1,22 +1,17 @@
/** /**
* core.c - DesignWare USB3 DRD Controller Core file * core.c - DesignWare USB3 DRD Controller Core file
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com
* *
* Authors: Felipe Balbi <balbi@ti.com>, * Authors: Felipe Balbi <balbi@ti.com>,
* Sebastian Andrzej Siewior <bigeasy@linutronix.de> * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
* *
* This program is free software: you can redistribute it and/or modify * Taken from Linux Kernel v3.19-rc1 (drivers/usb/dwc3/core.c) and ported
* it under the terms of the GNU General Public License version 2 of * to uboot.
* the License as published by the Free Software Foundation.
* *
* This program is distributed in the hope that it will be useful, * commit cd72f890d2 : usb: dwc3: core: enable phy suspend quirk on non-FPGA
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * SPDX-License-Identifier: GPL-2.0
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <linux/version.h> #include <linux/version.h>

View File

@ -1,19 +1,18 @@
/** /**
* core.h - DesignWare USB3 DRD Core Header * core.h - DesignWare USB3 DRD Core Header
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com
* *
* Authors: Felipe Balbi <balbi@ti.com>, * Authors: Felipe Balbi <balbi@ti.com>,
* Sebastian Andrzej Siewior <bigeasy@linutronix.de> * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
* *
* This program is free software: you can redistribute it and/or modify * Taken from Linux Kernel v3.19-rc1 (drivers/usb/dwc3/core.h) and ported
* it under the terms of the GNU General Public License version 2 of * to uboot.
* the License as published by the Free Software Foundation. *
* commit 460d098cb6 : usb: dwc3: make HIRD threshold configurable
*
* SPDX-License-Identifier: GPL-2.0
* *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/ */
#ifndef __DRIVERS_USB_DWC3_CORE_H #ifndef __DRIVERS_USB_DWC3_CORE_H

View File

@ -1,19 +1,17 @@
/** /**
* dwc3-omap.c - OMAP Specific Glue layer * dwc3-omap.c - OMAP Specific Glue layer
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com
* *
* Authors: Felipe Balbi <balbi@ti.com>, * Authors: Felipe Balbi <balbi@ti.com>,
* Sebastian Andrzej Siewior <bigeasy@linutronix.de> * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
* *
* This program is free software: you can redistribute it and/or modify * Taken from Linux Kernel v3.19-rc1 (drivers/usb/dwc3/dwc3-omap.c) and ported
* it under the terms of the GNU General Public License version 2 of * to uboot.
* the License as published by the Free Software Foundation.
* *
* This program is distributed in the hope that it will be useful, * commit 7ee2566ff5 : usb: dwc3: dwc3-omap: get rid of ->prepare()/->complete()
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * SPDX-License-Identifier: GPL-2.0
* GNU General Public License for more details.
*/ */
#include <linux/module.h> #include <linux/module.h>

View File

@ -1,19 +1,17 @@
/** /**
* ep0.c - DesignWare USB3 DRD Controller Endpoint 0 Handling * ep0.c - DesignWare USB3 DRD Controller Endpoint 0 Handling
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com
* *
* Authors: Felipe Balbi <balbi@ti.com>, * Authors: Felipe Balbi <balbi@ti.com>,
* Sebastian Andrzej Siewior <bigeasy@linutronix.de> * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
* *
* This program is free software: you can redistribute it and/or modify * Taken from Linux Kernel v3.19-rc1 (drivers/usb/dwc3/ep0.c) and ported
* it under the terms of the GNU General Public License version 2 of * to uboot.
* the License as published by the Free Software Foundation.
* *
* This program is distributed in the hope that it will be useful, * commit c00552ebaf : Merge 3.18-rc7 into usb-next
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * SPDX-License-Identifier: GPL-2.0
* GNU General Public License for more details.
*/ */
#include <linux/kernel.h> #include <linux/kernel.h>

View File

@ -1,19 +1,17 @@
/** /**
* gadget.c - DesignWare USB3 DRD Controller Gadget Framework Link * gadget.c - DesignWare USB3 DRD Controller Gadget Framework Link
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com
* *
* Authors: Felipe Balbi <balbi@ti.com>, * Authors: Felipe Balbi <balbi@ti.com>,
* Sebastian Andrzej Siewior <bigeasy@linutronix.de> * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
* *
* This program is free software: you can redistribute it and/or modify * Taken from Linux Kernel v3.19-rc1 (drivers/usb/dwc3/gadget.c) and ported
* it under the terms of the GNU General Public License version 2 of * to uboot.
* the License as published by the Free Software Foundation.
* *
* This program is distributed in the hope that it will be useful, * commit 8e74475b0e : usb: dwc3: gadget: use udc-core's reset notifier
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * SPDX-License-Identifier: GPL-2.0
* GNU General Public License for more details.
*/ */
#include <linux/kernel.h> #include <linux/kernel.h>

View File

@ -1,19 +1,19 @@
/** /**
* gadget.h - DesignWare USB3 DRD Gadget Header * gadget.h - DesignWare USB3 DRD Gadget Header
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com
* *
* Authors: Felipe Balbi <balbi@ti.com>, * Authors: Felipe Balbi <balbi@ti.com>,
* Sebastian Andrzej Siewior <bigeasy@linutronix.de> * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
* *
* This program is free software: you can redistribute it and/or modify * Taken from Linux Kernel v3.19-rc1 (drivers/usb/dwc3/gadget.h) and ported
* it under the terms of the GNU General Public License version 2 of * to uboot.
* the License as published by the Free Software Foundation. *
* commit 7a60855972 : usb: dwc3: gadget: fix set_halt() bug with pending
transfers
*
* SPDX-License-Identifier: GPL-2.0
* *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/ */
#ifndef __DRIVERS_USB_DWC3_GADGET_H #ifndef __DRIVERS_USB_DWC3_GADGET_H

View File

@ -1,19 +1,18 @@
/** /**
* io.h - DesignWare USB3 DRD IO Header * io.h - DesignWare USB3 DRD IO Header
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com
* *
* Authors: Felipe Balbi <balbi@ti.com>, * Authors: Felipe Balbi <balbi@ti.com>,
* Sebastian Andrzej Siewior <bigeasy@linutronix.de> * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
* *
* This program is free software: you can redistribute it and/or modify * Taken from Linux Kernel v3.19-rc1 (drivers/usb/dwc3/io.h) and ported
* it under the terms of the GNU General Public License version 2 of * to uboot.
* the License as published by the Free Software Foundation. *
* commit 2c4cbe6e5a : usb: dwc3: add tracepoints to aid debugging
*
* SPDX-License-Identifier: GPL-2.0
* *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/ */
#ifndef __DRIVERS_USB_DWC3_IO_H #ifndef __DRIVERS_USB_DWC3_IO_H