mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 12:57:06 +09:00
net: wireless: bcmdhd: Change singal pending return value from -110 to -4
- ETIMEDOUT is interpreted as FW is not responding, so return EINTR instead Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
This commit is contained in:
@@ -1481,9 +1481,9 @@ dhd_bus_rxctl(struct dhd_bus *bus, uchar *msg, uint msglen)
|
||||
dhd_os_sdunlock(bus->dhd);
|
||||
#endif /* DHD_DEBUG */
|
||||
} else if (pending == TRUE) {
|
||||
/* possibly fw hangs so never responsed back */
|
||||
DHD_ERROR(("%s: pending or timeout \n", __FUNCTION__));
|
||||
return -ETIMEDOUT;
|
||||
/* signal pending */
|
||||
DHD_ERROR(("%s: signal pending\n", __FUNCTION__));
|
||||
return -EINTR;
|
||||
} else {
|
||||
DHD_CTL(("%s: resumed for unknown reason?\n", __FUNCTION__));
|
||||
#ifdef DHD_DEBUG
|
||||
|
||||
Reference in New Issue
Block a user