diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2011-03-14 13:58:45 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-03-14 14:58:43 -0400 |
commit | d45f742841a27af7ad2ea16e9ddda7473fb2b795 (patch) | |
tree | 74d632949684f839acff2f5b731490f6fccbba08 | |
parent | 031a71c77427904367583762b91470bbf161b78c (diff) |
ath6kl: remove-typedef HIF_MBOX_PROPERTIES
remove-typedef -s HIF_MBOX_PROPERTIES \
"struct hif_mbox_properties" drivers/staging/ath6kl/
Tested-by: Naveen Singh <nsingh@atheros.com>
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/ath6kl/include/hif.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/ath6kl/include/hif.h b/drivers/staging/ath6kl/include/hif.h index 61e4392a9911..4f9be8a7eddd 100644 --- a/drivers/staging/ath6kl/include/hif.h +++ b/drivers/staging/ath6kl/include/hif.h | |||
@@ -223,10 +223,10 @@ typedef enum { | |||
223 | * | 223 | * |
224 | */ | 224 | */ |
225 | 225 | ||
226 | typedef struct { | 226 | struct hif_mbox_properties { |
227 | u32 ExtendedAddress; /* extended address for larger writes */ | 227 | u32 ExtendedAddress; /* extended address for larger writes */ |
228 | u32 ExtendedSize; | 228 | u32 ExtendedSize; |
229 | } HIF_MBOX_PROPERTIES; | 229 | }; |
230 | 230 | ||
231 | #define HIF_MBOX_FLAG_NO_BUNDLING (1 << 0) /* do not allow bundling over the mailbox */ | 231 | #define HIF_MBOX_FLAG_NO_BUNDLING (1 << 0) /* do not allow bundling over the mailbox */ |
232 | 232 | ||
@@ -240,7 +240,7 @@ struct hif_device_mbox_info { | |||
240 | and ARRAY of 32-bit words */ | 240 | and ARRAY of 32-bit words */ |
241 | 241 | ||
242 | /* the following describe extended mailbox properties */ | 242 | /* the following describe extended mailbox properties */ |
243 | HIF_MBOX_PROPERTIES MboxProp[4]; | 243 | struct hif_mbox_properties MboxProp[4]; |
244 | /* if the HIF supports the GMbox extended address region it can report it | 244 | /* if the HIF supports the GMbox extended address region it can report it |
245 | * here, some interfaces cannot support the GMBOX address range and not set this */ | 245 | * here, some interfaces cannot support the GMBOX address range and not set this */ |
246 | u32 GMboxAddress; | 246 | u32 GMboxAddress; |