diff options
author | stephen hemminger <shemminger@vyatta.com> | 2010-10-04 21:59:59 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-10-05 09:47:38 +0200 |
commit | e3d32687a624845e97f9717d9d2027b44b8c49a2 (patch) | |
tree | 1eed57ce582fb34fcc720942e1db186bcf743afb /drivers/net/wimax/i2400m/sdio-rx.c | |
parent | qlcnic: remove dead code (diff) | |
download | linux-e3d32687a624845e97f9717d9d2027b44b8c49a2.tar.xz linux-e3d32687a624845e97f9717d9d2027b44b8c49a2.zip |
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/sdio-rx.c')
-rw-r--r-- | drivers/net/wimax/i2400m/sdio-rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wimax/i2400m/sdio-rx.c b/drivers/net/wimax/i2400m/sdio-rx.c index 8b809c2ead6c..fb6396dd115f 100644 --- a/drivers/net/wimax/i2400m/sdio-rx.c +++ b/drivers/net/wimax/i2400m/sdio-rx.c @@ -87,7 +87,7 @@ static const __le32 i2400m_ACK_BARKER[4] = { * * sdio_readl() doesn't work. */ -ssize_t __i2400ms_rx_get_size(struct i2400ms *i2400ms) +static ssize_t __i2400ms_rx_get_size(struct i2400ms *i2400ms) { int ret, cnt, val; ssize_t rx_size; |