aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/irda/smsc-ircc2.c
diff options
context:
space:
mode:
authorHannes Eder <hannes@hanneseder.net>2008-12-26 03:03:19 -0500
committerDavid S. Miller <davem@davemloft.net>2008-12-26 03:03:19 -0500
commit0e49e64526ccd8cb78d7c4b4a732024ff221d4d0 (patch)
treea865297521ddbecb3dbe6e10108fc525508f83e9 /drivers/net/irda/smsc-ircc2.c
parent678c610b5a069a0a76c3189dd9aa801e5d5cd7e0 (diff)
drivers/net/irda: fix sparse warnings: make symbols static
Fix this sparse warnings: drivers/net/irda/ma600-sir.c:239:5: warning: symbol 'ma600_reset' was not declared. Should it be static? drivers/net/irda/smsc-ircc2.c:875:5: warning: symbol 'smsc_ircc_hard_xmit_sir' was not declared. Should it be static? drivers/net/irda/smsc-ircc2.c:1131:6: warning: symbol 'smsc_ircc_set_sir_speed' was not declared. Should it be static? drivers/net/irda/smsc-ircc2.c:1897:6: warning: symbol 'smsc_ircc_sir_start' was not declared. Should it be static? drivers/net/irda/w83977af_ir.c:150:5: warning: symbol 'w83977af_open' was not declared. Should it be static? drivers/net/irda/w83977af_ir.c:313:5: warning: symbol 'w83977af_probe' was not declared. Should it be static? drivers/net/irda/w83977af_ir.c:412:6: warning: symbol 'w83977af_change_speed' was not declared. Should it be static? drivers/net/irda/w83977af_ir.c:492:5: warning: symbol 'w83977af_hard_xmit' was not declared. Should it be static? drivers/net/irda/w83977af_ir.c:734:5: warning: symbol 'w83977af_dma_receive' was not declared. Should it be static? drivers/net/irda/w83977af_ir.c:806:5: warning: symbol 'w83977af_dma_receive_complete' was not declared. Should it be static? Signed-off-by: Hannes Eder <hannes@hanneseder.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/irda/smsc-ircc2.c')
-rw-r--r--drivers/net/irda/smsc-ircc2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/irda/smsc-ircc2.c b/drivers/net/irda/smsc-ircc2.c
index b5360fe99d3a..5d09e157e15b 100644
--- a/drivers/net/irda/smsc-ircc2.c
+++ b/drivers/net/irda/smsc-ircc2.c
@@ -872,7 +872,7 @@ static void smsc_ircc_timeout(struct net_device *dev)
872 * waits until the next transmit interrupt, and continues until the 872 * waits until the next transmit interrupt, and continues until the
873 * frame is transmitted. 873 * frame is transmitted.
874 */ 874 */
875int smsc_ircc_hard_xmit_sir(struct sk_buff *skb, struct net_device *dev) 875static int smsc_ircc_hard_xmit_sir(struct sk_buff *skb, struct net_device *dev)
876{ 876{
877 struct smsc_ircc_cb *self; 877 struct smsc_ircc_cb *self;
878 unsigned long flags; 878 unsigned long flags;
@@ -1128,7 +1128,7 @@ static void smsc_ircc_change_speed(struct smsc_ircc_cb *self, u32 speed)
1128 * Set speed of IrDA port to specified baudrate 1128 * Set speed of IrDA port to specified baudrate
1129 * 1129 *
1130 */ 1130 */
1131void smsc_ircc_set_sir_speed(struct smsc_ircc_cb *self, __u32 speed) 1131static void smsc_ircc_set_sir_speed(struct smsc_ircc_cb *self, __u32 speed)
1132{ 1132{
1133 int iobase; 1133 int iobase;
1134 int fcr; /* FIFO control reg */ 1134 int fcr; /* FIFO control reg */
@@ -1894,7 +1894,7 @@ static void __exit smsc_ircc_cleanup(void)
1894 * This function *must* be called with spinlock held, because it may 1894 * This function *must* be called with spinlock held, because it may
1895 * be called from the irq handler (via smsc_ircc_change_speed()). - Jean II 1895 * be called from the irq handler (via smsc_ircc_change_speed()). - Jean II
1896 */ 1896 */
1897void smsc_ircc_sir_start(struct smsc_ircc_cb *self) 1897static void smsc_ircc_sir_start(struct smsc_ircc_cb *self)
1898{ 1898{
1899 struct net_device *dev; 1899 struct net_device *dev;
1900 int fir_base, sir_base; 1900 int fir_base, sir_base;