mirror of
https://github.com/reactos/reactos.git
synced 2025-03-30 17:10:22 +00:00
[USBPORT][USBHUB_NEW]
- Add license headers svn path=/trunk/; revision=75784
This commit is contained in:
parent
ba2be71aa9
commit
8ec72be7cd
23 changed files with 161 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Hub Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBHub debugging declarations
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#ifndef DBG_UHUB_H__
|
||||
#define DBG_UHUB_H__
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Hub Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBHub debugging functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbhub.h"
|
||||
|
||||
//#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Hub Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBHub I/O control functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbhub.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Hub Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBHub plug and play functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbhub.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Hub Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBHub power handling functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbhub.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Hub Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBHub main driver functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbhub.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Hub Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBHub declarations
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#ifndef _USBHUB_H_
|
||||
#define _USBHUB_H_
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort debugging functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort device functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort endpoint functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort interface functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort I/O control functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
//#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort isochronous transfer functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort plug and play functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort power handling functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort queue implementation
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort root hub implementation
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort split transfer functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort URB functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort USB 2.0 functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
//#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort debugging declarations
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#ifndef USBDEBUG_H__
|
||||
#define USBDEBUG_H__
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort main driver functions
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#include "usbport.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
* PROJECT: ReactOS USB Port Driver
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: USBPort declarations
|
||||
* COPYRIGHT: Copyright 2017 Vadim Galyant <vgal@rambler.ru>
|
||||
*/
|
||||
|
||||
#ifndef USBPORT_H__
|
||||
#define USBPORT_H__
|
||||
|
||||
|
|
Loading…
Reference in a new issue