From 855df84fb2967d7ac0c855a27b207dad64ba46a0 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sat, 8 Sep 2018 10:12:39 +0200 Subject: [PATCH] [USBOHCI_NEW] Add license headers. --- drivers/usb/usbohci_new/dbg_ohci.h | 7 +++++++ drivers/usb/usbohci_new/hardware.h | 7 +++++++ drivers/usb/usbohci_new/roothub.c | 7 +++++++ drivers/usb/usbohci_new/usbohci.c | 7 +++++++ drivers/usb/usbohci_new/usbohci.h | 7 +++++++ 5 files changed, 35 insertions(+) diff --git a/drivers/usb/usbohci_new/dbg_ohci.h b/drivers/usb/usbohci_new/dbg_ohci.h index 273fe56e3f3..8da64768252 100644 --- a/drivers/usb/usbohci_new/dbg_ohci.h +++ b/drivers/usb/usbohci_new/dbg_ohci.h @@ -1,3 +1,10 @@ +/* + * PROJECT: ReactOS USB OHCI Miniport Driver + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: USBOHCI debugging declarations + * COPYRIGHT: Copyright 2017-2018 Vadim Galyant + */ + #ifndef DBG_OHCI_H__ #define DBG_OHCI_H__ diff --git a/drivers/usb/usbohci_new/hardware.h b/drivers/usb/usbohci_new/hardware.h index f4e5d3367cd..7834fb86fc6 100644 --- a/drivers/usb/usbohci_new/hardware.h +++ b/drivers/usb/usbohci_new/hardware.h @@ -1,3 +1,10 @@ +/* + * PROJECT: ReactOS USB OHCI Miniport Driver + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: USBOHCI hardware declarations + * COPYRIGHT: Copyright 2017-2018 Vadim Galyant + */ + #define OHCI_NUMBER_OF_INTERRUPTS 32 #define OHCI_MAX_PORT_COUNT 15 #define ED_EOF -1 diff --git a/drivers/usb/usbohci_new/roothub.c b/drivers/usb/usbohci_new/roothub.c index 832203627ac..3c25dfffe11 100644 --- a/drivers/usb/usbohci_new/roothub.c +++ b/drivers/usb/usbohci_new/roothub.c @@ -1,3 +1,10 @@ +/* + * PROJECT: ReactOS USB OHCI Miniport Driver + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: USBOHCI root hub functions + * COPYRIGHT: Copyright 2017-2018 Vadim Galyant + */ + #include "usbohci.h" #define NDEBUG diff --git a/drivers/usb/usbohci_new/usbohci.c b/drivers/usb/usbohci_new/usbohci.c index e4bed31d6df..ef18ceb2a80 100644 --- a/drivers/usb/usbohci_new/usbohci.c +++ b/drivers/usb/usbohci_new/usbohci.c @@ -1,3 +1,10 @@ +/* + * PROJECT: ReactOS USB OHCI Miniport Driver + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: USBOHCI main driver functions + * COPYRIGHT: Copyright 2017-2018 Vadim Galyant + */ + #include "usbohci.h" #define NDEBUG diff --git a/drivers/usb/usbohci_new/usbohci.h b/drivers/usb/usbohci_new/usbohci.h index fffcb18b614..7e52959376d 100644 --- a/drivers/usb/usbohci_new/usbohci.h +++ b/drivers/usb/usbohci_new/usbohci.h @@ -1,3 +1,10 @@ +/* + * PROJECT: ReactOS USB OHCI Miniport Driver + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: USBOHCI declarations + * COPYRIGHT: Copyright 2017-2018 Vadim Galyant + */ + #ifndef USBOHCI_H__ #define USBOHCI_H__