https://git.reactos.org/?p=reactos.git;a=commitdiff;h=855df84fb2967d7ac0c855...
commit 855df84fb2967d7ac0c855a27b207dad64ba46a0 Author: Thomas Faber thomas.faber@reactos.org AuthorDate: Sat Sep 8 10:12:39 2018 +0200 Commit: Thomas Faber thomas.faber@reactos.org CommitDate: Sat Sep 8 10:15:52 2018 +0200
[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 273fe56e3f..8da6476825 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 vgal@rambler.ru + */ + #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 f4e5d3367c..7834fb86fc 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 vgal@rambler.ru + */ + #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 832203627a..3c25dfffe1 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 vgal@rambler.ru + */ + #include "usbohci.h"
#define NDEBUG diff --git a/drivers/usb/usbohci_new/usbohci.c b/drivers/usb/usbohci_new/usbohci.c index e4bed31d6d..ef18ceb2a8 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 vgal@rambler.ru + */ + #include "usbohci.h"
#define NDEBUG diff --git a/drivers/usb/usbohci_new/usbohci.h b/drivers/usb/usbohci_new/usbohci.h index fffcb18b61..7e52959376 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 vgal@rambler.ru + */ + #ifndef USBOHCI_H__ #define USBOHCI_H__