brcm80211: fmac: stop using brcmf_pub in brcmf_sdbrcm_bus_watchdog
structure brcmf_pub contains context for generic layer and should not be used in brcmf_sdbrcm_bus_watchdog. This patch is part of fullmac bus interface refactoring. Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Reviewed-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: Franky Lin <frankyl@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
8d169aa00d
commit
cad2b26b10
|
@ -3535,14 +3535,14 @@ void brcmf_sdbrcm_isr(void *arg)
|
||||||
complete(&bus->dpc_wait);
|
complete(&bus->dpc_wait);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool brcmf_sdbrcm_bus_watchdog(struct brcmf_pub *drvr)
|
static bool brcmf_sdbrcm_bus_watchdog(struct brcmf_sdio *bus)
|
||||||
{
|
{
|
||||||
struct brcmf_sdio *bus;
|
#ifdef BCMDBG
|
||||||
|
struct brcmf_bus *bus_if = dev_get_drvdata(bus->sdiodev->dev);
|
||||||
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
brcmf_dbg(TIMER, "Enter\n");
|
brcmf_dbg(TIMER, "Enter\n");
|
||||||
|
|
||||||
bus = drvr->bus;
|
|
||||||
|
|
||||||
/* Ignore the timer if simulating bus down */
|
/* Ignore the timer if simulating bus down */
|
||||||
if (bus->sleeping)
|
if (bus->sleeping)
|
||||||
return false;
|
return false;
|
||||||
|
@ -3586,7 +3586,7 @@ static bool brcmf_sdbrcm_bus_watchdog(struct brcmf_pub *drvr)
|
||||||
}
|
}
|
||||||
#ifdef BCMDBG
|
#ifdef BCMDBG
|
||||||
/* Poll for console output periodically */
|
/* Poll for console output periodically */
|
||||||
if (drvr->bus_if->state == BRCMF_BUS_DATA &&
|
if (bus_if->state == BRCMF_BUS_DATA &&
|
||||||
bus->console_interval != 0) {
|
bus->console_interval != 0) {
|
||||||
bus->console.count += BRCMF_WD_POLL_MS;
|
bus->console.count += BRCMF_WD_POLL_MS;
|
||||||
if (bus->console.count >= bus->console_interval) {
|
if (bus->console.count >= bus->console_interval) {
|
||||||
|
@ -3801,7 +3801,7 @@ brcmf_sdbrcm_watchdog_thread(void *data)
|
||||||
if (kthread_should_stop())
|
if (kthread_should_stop())
|
||||||
break;
|
break;
|
||||||
if (!wait_for_completion_interruptible(&bus->watchdog_wait)) {
|
if (!wait_for_completion_interruptible(&bus->watchdog_wait)) {
|
||||||
brcmf_sdbrcm_bus_watchdog(bus->drvr);
|
brcmf_sdbrcm_bus_watchdog(bus);
|
||||||
/* Count the tick for reference */
|
/* Count the tick for reference */
|
||||||
bus->drvr->tickcnt++;
|
bus->drvr->tickcnt++;
|
||||||
} else
|
} else
|
||||||
|
|
Loading…
Reference in New Issue