diff options
author | stephen hemminger <shemminger@vyatta.com> | 2010-10-04 15:59:59 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-10-05 03:47:38 -0400 |
commit | e3d32687a624845e97f9717d9d2027b44b8c49a2 (patch) | |
tree | 1eed57ce582fb34fcc720942e1db186bcf743afb /drivers/net/wimax/i2400m/driver.c | |
parent | debf279a81c93d6942a50ec0fd3ba1f158b109fb (diff) |
wimax: make functions local
Make wimax variables and functions local if possible.
Compile tested only.
This also removes a couple of unused EXPORT_SYMBOL.
If this breaks some out of tree code, please fix that
by putting the code in the kernel tree.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wimax/i2400m/driver.c')
-rw-r--r-- | drivers/net/wimax/i2400m/driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wimax/i2400m/driver.c b/drivers/net/wimax/i2400m/driver.c index 9c8b78d4abd2..cdedab46ba21 100644 --- a/drivers/net/wimax/i2400m/driver.c +++ b/drivers/net/wimax/i2400m/driver.c | |||
@@ -122,7 +122,7 @@ struct i2400m_work *__i2400m_work_setup( | |||
122 | * works struct was already queued, but we have just allocated it, so | 122 | * works struct was already queued, but we have just allocated it, so |
123 | * it should not happen. | 123 | * it should not happen. |
124 | */ | 124 | */ |
125 | int i2400m_schedule_work(struct i2400m *i2400m, | 125 | static int i2400m_schedule_work(struct i2400m *i2400m, |
126 | void (*fn)(struct work_struct *), gfp_t gfp_flags, | 126 | void (*fn)(struct work_struct *), gfp_t gfp_flags, |
127 | const void *pl, size_t pl_size) | 127 | const void *pl, size_t pl_size) |
128 | { | 128 | { |