mirror of https://github.com/acidanthera/audk.git
update USB_PORT_STAT_OWNER from 2^11 to 2^13 which is added as a possible value of EFI_USB_PORT_STATUS and is the equivalent of EfiUsbPortOwner of EFI_USB_PORT_FEATURE
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11160 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
4ed4e19c08
commit
cbbd284805
|
@ -4,7 +4,7 @@
|
||||||
running in the EFI boot services environment, to perform data transactions over
|
running in the EFI boot services environment, to perform data transactions over
|
||||||
a USB bus. In addition, it provides an abstraction for the root hub of the USB bus.
|
a USB bus. In addition, it provides an abstraction for the root hub of the USB bus.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -47,7 +47,7 @@ typedef struct {
|
||||||
#define USB_PORT_STAT_POWER 0x0100
|
#define USB_PORT_STAT_POWER 0x0100
|
||||||
#define USB_PORT_STAT_LOW_SPEED 0x0200
|
#define USB_PORT_STAT_LOW_SPEED 0x0200
|
||||||
#define USB_PORT_STAT_HIGH_SPEED 0x0400
|
#define USB_PORT_STAT_HIGH_SPEED 0x0400
|
||||||
#define USB_PORT_STAT_OWNER 0x0800
|
#define USB_PORT_STAT_OWNER 0x2000
|
||||||
|
|
||||||
///
|
///
|
||||||
/// EFI_USB_PORT_STATUS.PortChangeStatus bit definition
|
/// EFI_USB_PORT_STATUS.PortChangeStatus bit definition
|
||||||
|
|
Loading…
Reference in New Issue