mirror of
https://github.com/hardkernel/linux.git
synced 2026-05-30 15:56:35 +09:00
staging: brcm80211: fix checkpatch errors in brcmsmac driver
Several source files in brcmsmac driver have checkpatch errors that have been removed (see below). ERROR: spaces required around that ':' (ctx:VxV) + (u8)NPHY_RSSI_SEL_TSSI_5G:(u8)NPHY_RSSI_SEL_TSSI_2G; -- ERROR: code indent should use tabs where possible + ^Ierr = initvars_table(base, vp, vars, count);$ -- Signed-off-by: Arend van Spriel <arend@broadcom.com> Reviewed-by: Roland Vossen <rvossen@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
835ef44c60
commit
73d924bfe3
@@ -23456,7 +23456,7 @@ wlc_phy_est_tonepwr_nphy(phy_info_t *pi, s32 *qdBm_pwrbuf, u8 num_samps)
|
||||
|
||||
tssi_type =
|
||||
CHSPEC_IS5G(pi->radio_chanspec) ?
|
||||
(u8)NPHY_RSSI_SEL_TSSI_5G:(u8)NPHY_RSSI_SEL_TSSI_2G;
|
||||
(u8)NPHY_RSSI_SEL_TSSI_5G : (u8)NPHY_RSSI_SEL_TSSI_2G;
|
||||
|
||||
wlc_phy_poll_rssi_nphy(pi, tssi_type, rssi_buf, num_samps);
|
||||
|
||||
|
||||
@@ -1318,9 +1318,9 @@ static int initvars_srom_pci(struct si_pub *sih, void *curmap, char **vars,
|
||||
vp = b.buf;
|
||||
*vp++ = '\0';
|
||||
|
||||
err = initvars_table(base, vp, vars, count);
|
||||
err = initvars_table(base, vp, vars, count);
|
||||
|
||||
errout:
|
||||
errout:
|
||||
if (base)
|
||||
kfree(base);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user