wimax/i2400m: introduce i2400m_reset(), stopping TX and carrier
Currently the i2400m driver was resetting by just calling
i2400m->bus_reset(). However, this was missing stopping the TX queue
and downing the carrier. This was causing, for the corner case of the
driver reseting a device that refuses to go out of idle mode, that a
few packets would be queued and more than one reset would go through,
making the recovery a wee bit messy.
To avoid introducing the same cleanup in all the bus-specific driver,
introduced a i2400m_reset() function that takes care of house cleaning
and then calling the bus-level reset implementation.
The bulk of the changes in all files are just to rename the call from
i2400m->bus_reset() to i2400m_reset().
Signed-off-by:
Inaky Perez-Gonzalez <inaky@linux.intel.com>
Showing
- drivers/net/wimax/i2400m/control.c 2 additions, 2 deletionsdrivers/net/wimax/i2400m/control.c
- drivers/net/wimax/i2400m/debugfs.c 1 addition, 1 deletiondrivers/net/wimax/i2400m/debugfs.c
- drivers/net/wimax/i2400m/driver.c 20 additions, 2 deletionsdrivers/net/wimax/i2400m/driver.c
- drivers/net/wimax/i2400m/fw.c 2 additions, 2 deletionsdrivers/net/wimax/i2400m/fw.c
- drivers/net/wimax/i2400m/i2400m.h 1 addition, 0 deletionsdrivers/net/wimax/i2400m/i2400m.h
- drivers/net/wimax/i2400m/netdev.c 5 additions, 3 deletionsdrivers/net/wimax/i2400m/netdev.c
- drivers/net/wimax/i2400m/rx.c 2 additions, 2 deletionsdrivers/net/wimax/i2400m/rx.c
- drivers/net/wimax/i2400m/sdio.c 1 addition, 8 deletionsdrivers/net/wimax/i2400m/sdio.c
- drivers/net/wimax/i2400m/usb.c 1 addition, 1 deletiondrivers/net/wimax/i2400m/usb.c
Loading
Please register or sign in to comment