summaryrefslogtreecommitdiffstats
path: root/drivers/net/wimax/i2400m/debugfs.c
diff options
context:
space:
mode:
authorInaky Perez-Gonzalez2009-10-19 09:24:56 +0200
committerInaky Perez-Gonzalez2009-11-03 21:49:36 +0100
commitc931ceeb780560ff652a8f9875f88778439ee87e (patch)
treeca754722967ff1b9a4660ef38b0eae3d36f38a58 /drivers/net/wimax/i2400m/debugfs.c
parentwimax/i2400m: implement passive mode as a module option (diff)
downloadkernel-qcow2-linux-c931ceeb780560ff652a8f9875f88778439ee87e.tar.gz
kernel-qcow2-linux-c931ceeb780560ff652a8f9875f88778439ee87e.tar.xz
kernel-qcow2-linux-c931ceeb780560ff652a8f9875f88778439ee87e.zip
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>
Diffstat (limited to 'drivers/net/wimax/i2400m/debugfs.c')
-rw-r--r--drivers/net/wimax/i2400m/debugfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wimax/i2400m/debugfs.c b/drivers/net/wimax/i2400m/debugfs.c
index 9b81af3f80a9..b1aec3e1892f 100644
--- a/drivers/net/wimax/i2400m/debugfs.c
+++ b/drivers/net/wimax/i2400m/debugfs.c
@@ -214,7 +214,7 @@ int debugfs_i2400m_reset_set(void *data, u64 val)
case I2400M_RT_WARM:
case I2400M_RT_COLD:
case I2400M_RT_BUS:
- result = i2400m->bus_reset(i2400m, rt);
+ result = i2400m_reset(i2400m, rt);
if (result >= 0)
result = 0;
default: