diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2004-11-08 16:48:26 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2004-11-08 16:48:26 +0000 |
commit | baec5f1eb175d1cad227138d68e1810ee1d35662 (patch) | |
tree | 77b955518f5d2439c3c3a2d1fd1d103e9a28a9ba /sys/dev/ic/ar5xxx.h | |
parent | 8e524ce584ae912c792c4ceaa25dcc09ea093461 (diff) |
use __packed instead of __attribute__ ((__packed__)) (ok miod@), check
possible NULL mac in the keycache function.
Diffstat (limited to 'sys/dev/ic/ar5xxx.h')
-rw-r--r-- | sys/dev/ic/ar5xxx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/ar5xxx.h b/sys/dev/ic/ar5xxx.h index 212eec26af8..39b51a6fbc8 100644 --- a/sys/dev/ic/ar5xxx.h +++ b/sys/dev/ic/ar5xxx.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ar5xxx.h,v 1.3 2004/11/03 16:40:46 reyk Exp $ */ +/* $OpenBSD: ar5xxx.h,v 1.4 2004/11/08 16:48:25 reyk Exp $ */ /* * Copyright (c) 2004 Reyk Floeter <reyk@vantronix.net>. @@ -559,7 +559,7 @@ struct ath_desc { #define ds_rxstat ds_us.rx #define ds_txstat ds_us.tx -} __attribute__((__packed__)); +} __packed; #define HAL_RXDESC_INTREQ 0x0020 |