aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/fxp/if_fxpreg.h
diff options
context:
space:
mode:
authorMaxime Henrion <mux@FreeBSD.org>2003-04-06 01:11:38 +0000
committerMaxime Henrion <mux@FreeBSD.org>2003-04-06 01:11:38 +0000
commit6835a8accc6d4b16113587e5c6bd6d4f684b7a7c (patch)
tree90ab31108d9886d6c8b810a9324609b036b1f2ca /sys/dev/fxp/if_fxpreg.h
parent83e6547df1d0d80819a6bbf091ee30f15500dc51 (diff)
downloadsrc-6835a8accc6d4b16113587e5c6bd6d4f684b7a7c.tar.gz
src-6835a8accc6d4b16113587e5c6bd6d4f684b7a7c.zip
Correct the definition of the link_addr and rbd_addr fields
in struct fxp_rfa. This should have been committed with my last endianness fixes.
Notes
Notes: svn path=/head/; revision=113154
Diffstat (limited to 'sys/dev/fxp/if_fxpreg.h')
-rw-r--r--sys/dev/fxp/if_fxpreg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/fxp/if_fxpreg.h b/sys/dev/fxp/if_fxpreg.h
index 15a7f5b08fa1..d9629f2c2602 100644
--- a/sys/dev/fxp/if_fxpreg.h
+++ b/sys/dev/fxp/if_fxpreg.h
@@ -346,8 +346,8 @@ struct fxp_cb_tx {
struct fxp_rfa {
u_int16_t rfa_status;
u_int16_t rfa_control;
- u_int8_t link_addr[4];
- u_int8_t rbd_addr[4];
+ u_int32_t link_addr;
+ u_int32_t rbd_addr;
u_int16_t actual_size;
u_int16_t size;