Commit 198bd4d6 authored by Jason Cooper's avatar Jason Cooper Committed by Greg Kroah-Hartman

staging: brcm80211: fix "ERROR: need consistent spacing around '*'"

This patch fixes the real errors.  The rest are caused by typedefs
which will be fixed in a later patch.
Signed-off-by: default avatarJason Cooper <jason@lakedaemon.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 39dcff3f
...@@ -1201,8 +1201,8 @@ BWL_PRE_PACKED_STRUCT struct tx_status { ...@@ -1201,8 +1201,8 @@ BWL_PRE_PACKED_STRUCT struct tx_status {
#define M_20IN40_IQ (0x380 * 2) #define M_20IN40_IQ (0x380 * 2)
/* SHM locations where ucode stores the current power index */ /* SHM locations where ucode stores the current power index */
#define M_CURR_IDX1 (0x384 *2) #define M_CURR_IDX1 (0x384 * 2)
#define M_CURR_IDX2 (0x387 *2) #define M_CURR_IDX2 (0x387 * 2)
#define M_BSCALE_ANT0 (0x5e * 2) #define M_BSCALE_ANT0 (0x5e * 2)
#define M_BSCALE_ANT1 (0x5f * 2) #define M_BSCALE_ANT1 (0x5f * 2)
......
...@@ -503,8 +503,8 @@ BCMATTACHFN(srom_parsecis) (osl_t *osh, uint8 *pcis[], uint ciscnt, ...@@ -503,8 +503,8 @@ BCMATTACHFN(srom_parsecis) (osl_t *osh, uint8 *pcis[], uint ciscnt,
&& !(ETHER_ISMULTI(&cis[i + 2]))) { && !(ETHER_ISMULTI(&cis[i + 2]))) {
ASSERT(cis[i + 1] == ASSERT(cis[i + 1] ==
ETHER_ADDR_LEN); ETHER_ADDR_LEN);
bcm_ether_ntoa((struct bcm_ether_ntoa(
ether_addr *) (struct ether_addr *)
&cis[i + 2], &cis[i + 2],
eabuf); eabuf);
...@@ -975,8 +975,8 @@ BCMATTACHFN(srom_parsecis) (osl_t *osh, uint8 *pcis[], uint ciscnt, ...@@ -975,8 +975,8 @@ BCMATTACHFN(srom_parsecis) (osl_t *osh, uint8 *pcis[], uint ciscnt,
case HNBU_MACADDR: case HNBU_MACADDR:
if (!(ETHER_ISNULLADDR(&cis[i + 1])) && if (!(ETHER_ISNULLADDR(&cis[i + 1])) &&
!(ETHER_ISMULTI(&cis[i + 1]))) { !(ETHER_ISMULTI(&cis[i + 1]))) {
bcm_ether_ntoa((struct bcm_ether_ntoa(
ether_addr *) (struct ether_addr *)
&cis[i + 1], &cis[i + 1],
eabuf); eabuf);
......
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