mirror of https://github.com/acidanthera/audk.git
remove a redefinition to pass ICC build
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5557 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e3385ac7c5
commit
11dad244fd
|
@ -33,7 +33,7 @@ typedef struct _USB_MASS_DEVICE USB_MASS_DEVICE;
|
||||||
#define USB_MASS_SIGNATURE EFI_SIGNATURE_32 ('U', 's', 'b', 'M')
|
#define USB_MASS_SIGNATURE EFI_SIGNATURE_32 ('U', 's', 'b', 'M')
|
||||||
|
|
||||||
|
|
||||||
typedef struct _USB_MASS_DEVICE {
|
struct _USB_MASS_DEVICE {
|
||||||
UINT32 Signature;
|
UINT32 Signature;
|
||||||
EFI_HANDLE Controller;
|
EFI_HANDLE Controller;
|
||||||
EFI_USB_IO_PROTOCOL *UsbIo;
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
||||||
|
@ -45,7 +45,7 @@ typedef struct _USB_MASS_DEVICE {
|
||||||
UINT8 Pdt; // Peripheral Device Type
|
UINT8 Pdt; // Peripheral Device Type
|
||||||
USB_MASS_TRANSPORT *Transport; // USB mass storage transport protocol
|
USB_MASS_TRANSPORT *Transport; // USB mass storage transport protocol
|
||||||
VOID *Context; // Opaque storage for mass transport
|
VOID *Context; // Opaque storage for mass transport
|
||||||
}USB_MASS_DEVICE;
|
};
|
||||||
|
|
||||||
#define USB_MASS_DEVICE_FROM_BLOCKIO(a) \
|
#define USB_MASS_DEVICE_FROM_BLOCKIO(a) \
|
||||||
CR (a, USB_MASS_DEVICE, BlockIo, USB_MASS_SIGNATURE)
|
CR (a, USB_MASS_DEVICE, BlockIo, USB_MASS_SIGNATURE)
|
||||||
|
|
Loading…
Reference in New Issue