diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-12-30 22:09:04 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-01-29 12:57:01 -0500 |
commit | de30dadb558cfe7f2eba180a4bbb272d29d99072 (patch) | |
tree | bb73dbdae8ace39e8a9cf601f2879fae38e42f18 /src/block.h | |
parent | d1bb7e52f5e0e96588d9b6554f277a92f28b560e (diff) | |
download | seabios-hppa-de30dadb558cfe7f2eba180a4bbb272d29d99072.zip seabios-hppa-de30dadb558cfe7f2eba180a4bbb272d29d99072.tar.gz seabios-hppa-de30dadb558cfe7f2eba180a4bbb272d29d99072.tar.bz2 |
xhci: Run the XHCI driver entirely in 32bit mode.
Since the XHCI driver needs to jump into 32bit mode anyway, it is
simpler to just run all of the code in 32bit mode.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/block.h')
-rw-r--r-- | src/block.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/block.h b/src/block.h index bb57748..5d0afb5 100644 --- a/src/block.h +++ b/src/block.h @@ -79,7 +79,9 @@ struct drive_s { #define DTYPE_VIRTIO_SCSI 0x60 #define DTYPE_VIRTIO_BLK 0x61 #define DTYPE_USB 0x70 -#define DTYPE_UAS 0x71 +#define DTYPE_USB_32 0x71 +#define DTYPE_UAS 0x72 +#define DTYPE_UAS_32 0x73 #define DTYPE_LSI_SCSI 0x80 #define DTYPE_ESP_SCSI 0x81 #define DTYPE_MEGASAS 0x82 |