diff options
author | Daeseok Youn <daeseok.youn@gmail.com> | 2014-02-18 20:49:12 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-19 16:39:11 -0500 |
commit | 5f4d4e3f1cfe97b1d7d696e2608c41c2ad123cfc (patch) | |
tree | 61656b275b580a59d496741cecaeb83b2be6d8ee /drivers/atm | |
parent | c664d63818aee3167b7ffa4002d224c88cb7ba85 (diff) |
atm: solos-pci: make solos_bh() as static
sparse says:
drivers/atm/solos-pci.c:763:6: warning:
symbol 'solos_bh' was not declared. Should it be static?
Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
Acked-by: Chas Williams <chas@cmf.nrl.navy.mil>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm')
-rw-r--r-- | drivers/atm/solos-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/atm/solos-pci.c b/drivers/atm/solos-pci.c index e3fb496c7163..943cf0d6abaf 100644 --- a/drivers/atm/solos-pci.c +++ b/drivers/atm/solos-pci.c | |||
@@ -760,7 +760,7 @@ static irqreturn_t solos_irq(int irq, void *dev_id) | |||
760 | return IRQ_RETVAL(handled); | 760 | return IRQ_RETVAL(handled); |
761 | } | 761 | } |
762 | 762 | ||
763 | void solos_bh(unsigned long card_arg) | 763 | static void solos_bh(unsigned long card_arg) |
764 | { | 764 | { |
765 | struct solos_card *card = (void *)card_arg; | 765 | struct solos_card *card = (void *)card_arg; |
766 | uint32_t card_flags; | 766 | uint32_t card_flags; |