summaryrefslogtreecommitdiff
path: root/sys/dev/ic/dcreg.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2003-09-25 21:47:11 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2003-09-25 21:47:11 +0000
commit934bbfc53917d14979b38b4ff34c026865c45d3f (patch)
tree0d39f180653b2b98255d9f73d11eb0a1d17fc592 /sys/dev/ic/dcreg.h
parent3dcc73786397901aa6ceeed12a85831473b34227 (diff)
better structs alignment; jason@ testing on sparc64 and ok
Diffstat (limited to 'sys/dev/ic/dcreg.h')
-rw-r--r--sys/dev/ic/dcreg.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/ic/dcreg.h b/sys/dev/ic/dcreg.h
index 1d62de54fc1..3c04e79ba5a 100644
--- a/sys/dev/ic/dcreg.h
+++ b/sys/dev/ic/dcreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dcreg.h,v 1.30 2003/05/20 18:48:43 henning Exp $ */
+/* $OpenBSD: dcreg.h,v 1.31 2003/09/25 21:47:10 mickey Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -398,6 +398,7 @@ struct dc_desc {
u_int32_t dc_ctl;
u_int32_t dc_ptr1;
u_int32_t dc_ptr2;
+ u_int32_t dc_pad[4];
};
#define dc_data dc_ptr1
@@ -461,7 +462,7 @@ struct dc_desc {
#define DC_MAXFRAGS 16
#define DC_RX_LIST_CNT 64
#define DC_TX_LIST_CNT 256
-#define DC_MIN_FRAMELEN 60
+#define DC_MIN_FRAMELEN 64
#define DC_RXLEN 1536
#define DC_INC(x, y) (x) = (x + 1) % y