aboutsummaryrefslogtreecommitdiff
path: root/src/usb-uhci.h
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2010-02-27 23:50:48 -0500
committerKevin O'Connor <kevin@koconnor.net>2010-03-09 19:59:36 -0500
commit09e2f7c4f371121d1991c4c5e0a2ad47ffad0e21 (patch)
tree17ec1cd4e6c1c36a21df35c12313cd479de01e61 /src/usb-uhci.h
parent406fad6fada9fdf1df6c1f627dfadc08452b6b5e (diff)
downloadseabios-hppa-09e2f7c4f371121d1991c4c5e0a2ad47ffad0e21.zip
seabios-hppa-09e2f7c4f371121d1991c4c5e0a2ad47ffad0e21.tar.gz
seabios-hppa-09e2f7c4f371121d1991c4c5e0a2ad47ffad0e21.tar.bz2
Reduce size of USB 'struct uhci_td'.
Reduce the size to make arrays of tds smaller. For interrupt in pipes, allocate the data space separately.
Diffstat (limited to 'src/usb-uhci.h')
-rw-r--r--src/usb-uhci.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/usb-uhci.h b/src/usb-uhci.h
index 78ec57b..3c2c298 100644
--- a/src/usb-uhci.h
+++ b/src/usb-uhci.h
@@ -112,9 +112,6 @@ struct uhci_td {
u32 status;
u32 token;
void *buffer;
-
- // Software fields
- u32 data[4];
} PACKED;
struct uhci_qh {