diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-01-04 10:04:08 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-01-04 10:04:08 +0000 |
commit | 57eac29b569c5c56b435eb66ce9139d947d4cba4 (patch) | |
tree | 50e60a39f4e4a4be1ff186b4a695f1c32ec72e13 /sys/dev/usb/if_upgtvar.h | |
parent | 9455d7d032d11c40027a1333f5bee05a3a6307dd (diff) |
Fix TX padding.
Diffstat (limited to 'sys/dev/usb/if_upgtvar.h')
-rw-r--r-- | sys/dev/usb/if_upgtvar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_upgtvar.h b/sys/dev/usb/if_upgtvar.h index 351f180a48b..465841356cc 100644 --- a/sys/dev/usb/if_upgtvar.h +++ b/sys/dev/usb/if_upgtvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_upgtvar.h,v 1.5 2008/01/01 20:20:30 mglocker Exp $ */ +/* $OpenBSD: if_upgtvar.h,v 1.6 2008/01/04 10:04:07 mglocker Exp $ */ /* * Copyright (c) 2007 Marcus Glocker <mglocker@openbsd.org> @@ -337,7 +337,7 @@ struct upgt_lmac_tx_desc { uint32_t pad2; uint32_t unknown1; uint32_t unknown2; - uint16_t pad3; + uint8_t pad3[2]; /* 802.11 frame data */ } __packed; |