aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2011-03-10 21:55:37 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2011-03-11 17:31:49 -0500
commit89c625bef65fd245692bc884ae8268f6d5b60da9 (patch)
treecc1b0a057c00e9958dded83e335f499a7c5ba970 /drivers/staging
parent495abc7995ffff39ba4333ad8e382017dc2192f8 (diff)
staging: ath6kl: remove-typedef AR6K_GMBOX_CTRL_REGISTERS
remove-typedef -s AR6K_GMBOX_CTRL_REGISTERS \ "struct ar6k_gmbox_ctrl_registers" drivers/staging/ath6k Cc: Naveen Singh <naveen.singh@atheros.com> Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/ath6kl/htc2/AR6000/ar6k.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/ath6kl/htc2/AR6000/ar6k.h b/drivers/staging/ath6kl/htc2/AR6000/ar6k.h
index ebcc82b1362..e8b638c5ddf 100644
--- a/drivers/staging/ath6kl/htc2/AR6000/ar6k.h
+++ b/drivers/staging/ath6kl/htc2/AR6000/ar6k.h
@@ -65,9 +65,9 @@ typedef PREPACK struct _AR6K_IRQ_ENABLE_REGISTERS {
65 u8 counter_int_status_enable; 65 u8 counter_int_status_enable;
66} POSTPACK AR6K_IRQ_ENABLE_REGISTERS; 66} POSTPACK AR6K_IRQ_ENABLE_REGISTERS;
67 67
68typedef PREPACK struct _AR6K_GMBOX_CTRL_REGISTERS { 68PREPACK struct ar6k_gmbox_ctrl_registers {
69 u8 int_status_enable; 69 u8 int_status_enable;
70} POSTPACK AR6K_GMBOX_CTRL_REGISTERS; 70} POSTPACK;
71 71
72#include "athendpack.h" 72#include "athendpack.h"
73 73
@@ -139,7 +139,7 @@ struct ar6k_device {
139 int MaxSendBundleSize; 139 int MaxSendBundleSize;
140 AR6K_GMBOX_INFO GMboxInfo; 140 AR6K_GMBOX_INFO GMboxInfo;
141 bool GMboxEnabled; 141 bool GMboxEnabled;
142 AR6K_GMBOX_CTRL_REGISTERS GMboxControlRegisters; 142 struct ar6k_gmbox_ctrl_registers GMboxControlRegisters;
143 int RecheckIRQStatusCnt; 143 int RecheckIRQStatusCnt;
144}; 144};
145 145