Commit d45f7428 authored by Luis R. Rodriguez's avatar Luis R. Rodriguez Committed by Greg Kroah-Hartman

ath6kl: remove-typedef HIF_MBOX_PROPERTIES

remove-typedef -s HIF_MBOX_PROPERTIES \
	"struct hif_mbox_properties" drivers/staging/ath6kl/
Tested-by: default avatarNaveen Singh <nsingh@atheros.com>
Signed-off-by: default avatarLuis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 031a71c7
...@@ -223,10 +223,10 @@ typedef enum { ...@@ -223,10 +223,10 @@ typedef enum {
* *
*/ */
typedef struct { struct hif_mbox_properties {
u32 ExtendedAddress; /* extended address for larger writes */ u32 ExtendedAddress; /* extended address for larger writes */
u32 ExtendedSize; u32 ExtendedSize;
} HIF_MBOX_PROPERTIES; };
#define HIF_MBOX_FLAG_NO_BUNDLING (1 << 0) /* do not allow bundling over the mailbox */ #define HIF_MBOX_FLAG_NO_BUNDLING (1 << 0) /* do not allow bundling over the mailbox */
...@@ -240,7 +240,7 @@ struct hif_device_mbox_info { ...@@ -240,7 +240,7 @@ struct hif_device_mbox_info {
and ARRAY of 32-bit words */ and ARRAY of 32-bit words */
/* the following describe extended mailbox properties */ /* the following describe extended mailbox properties */
HIF_MBOX_PROPERTIES MboxProp[4]; struct hif_mbox_properties MboxProp[4];
/* if the HIF supports the GMbox extended address region it can report it /* if the HIF supports the GMbox extended address region it can report it
* here, some interfaces cannot support the GMBOX address range and not set this */ * here, some interfaces cannot support the GMBOX address range and not set this */
u32 GMboxAddress; u32 GMboxAddress;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment