123456789101112131415161718192021222324252627282930313233 |
- From dbda7dacb79a377e8ed9d38ce0e4a58b70aa9060 Mon Sep 17 00:00:00 2001
- From: Arend Van Spriel <[email protected]>
- Date: Tue, 19 Dec 2017 13:47:08 +0100
- Subject: [PATCH] brcmfmac: Rename buscore to core for consistency
- Avoid confusion with unrelated _buscore labels.
- Signed-off-by: Ian Molton <[email protected]>
- Acked-by: Arend van Spriel <[email protected]>
- [arend: only do the rename]
- Signed-off-by: Arend van Spriel <[email protected]>
- Signed-off-by: Kalle Valo <[email protected]>
- ---
- drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
- --- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c
- +++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c
- @@ -2485,12 +2485,12 @@ static inline void brcmf_sdio_clrintr(st
-
- static int brcmf_sdio_intr_rstatus(struct brcmf_sdio *bus)
- {
- - struct brcmf_core *buscore = bus->sdio_core;
- + struct brcmf_core *core = bus->sdio_core;
- u32 addr;
- unsigned long val;
- int ret;
-
- - addr = buscore->base + SD_REG(intstatus);
- + addr = core->base + SD_REG(intstatus);
-
- val = brcmf_sdiod_readl(bus->sdiodev, addr, &ret);
- bus->sdcnt.f1regdata++;
|