diff options
Diffstat (limited to 'drivers/isdn/hardware/mISDN/hfcmulti.c')
-rw-r--r-- | drivers/isdn/hardware/mISDN/hfcmulti.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/isdn/hardware/mISDN/hfcmulti.c b/drivers/isdn/hardware/mISDN/hfcmulti.c index 46684e136181..599d832b48be 100644 --- a/drivers/isdn/hardware/mISDN/hfcmulti.c +++ b/drivers/isdn/hardware/mISDN/hfcmulti.c | |||
@@ -171,7 +171,7 @@ static int (*unregister_interrupt)(void); | |||
171 | static int interrupt_registered; | 171 | static int interrupt_registered; |
172 | 172 | ||
173 | static struct hfc_multi *syncmaster; | 173 | static struct hfc_multi *syncmaster; |
174 | int plxsd_master; /* if we have a master card (yet) */ | 174 | static int plxsd_master; /* if we have a master card (yet) */ |
175 | static spinlock_t plx_lock; /* may not acquire other lock inside */ | 175 | static spinlock_t plx_lock; /* may not acquire other lock inside */ |
176 | EXPORT_SYMBOL(plx_lock); | 176 | EXPORT_SYMBOL(plx_lock); |
177 | 177 | ||
@@ -422,7 +422,7 @@ HFC_wait_debug(struct hfc_multi *hc, const char *function, int line) | |||
422 | #endif | 422 | #endif |
423 | 423 | ||
424 | /* write fifo data (REGIO) */ | 424 | /* write fifo data (REGIO) */ |
425 | void | 425 | static void |
426 | write_fifo_regio(struct hfc_multi *hc, u_char *data, int len) | 426 | write_fifo_regio(struct hfc_multi *hc, u_char *data, int len) |
427 | { | 427 | { |
428 | outb(A_FIFO_DATA0, (hc->pci_iobase)+4); | 428 | outb(A_FIFO_DATA0, (hc->pci_iobase)+4); |
@@ -443,7 +443,7 @@ write_fifo_regio(struct hfc_multi *hc, u_char *data, int len) | |||
443 | } | 443 | } |
444 | } | 444 | } |
445 | /* write fifo data (PCIMEM) */ | 445 | /* write fifo data (PCIMEM) */ |
446 | void | 446 | static void |
447 | write_fifo_pcimem(struct hfc_multi *hc, u_char *data, int len) | 447 | write_fifo_pcimem(struct hfc_multi *hc, u_char *data, int len) |
448 | { | 448 | { |
449 | while (len>>2) { | 449 | while (len>>2) { |
@@ -465,7 +465,7 @@ write_fifo_pcimem(struct hfc_multi *hc, u_char *data, int len) | |||
465 | } | 465 | } |
466 | } | 466 | } |
467 | /* read fifo data (REGIO) */ | 467 | /* read fifo data (REGIO) */ |
468 | void | 468 | static void |
469 | read_fifo_regio(struct hfc_multi *hc, u_char *data, int len) | 469 | read_fifo_regio(struct hfc_multi *hc, u_char *data, int len) |
470 | { | 470 | { |
471 | outb(A_FIFO_DATA0, (hc->pci_iobase)+4); | 471 | outb(A_FIFO_DATA0, (hc->pci_iobase)+4); |
@@ -487,7 +487,7 @@ read_fifo_regio(struct hfc_multi *hc, u_char *data, int len) | |||
487 | } | 487 | } |
488 | 488 | ||
489 | /* read fifo data (PCIMEM) */ | 489 | /* read fifo data (PCIMEM) */ |
490 | void | 490 | static void |
491 | read_fifo_pcimem(struct hfc_multi *hc, u_char *data, int len) | 491 | read_fifo_pcimem(struct hfc_multi *hc, u_char *data, int len) |
492 | { | 492 | { |
493 | while (len>>2) { | 493 | while (len>>2) { |
@@ -706,7 +706,7 @@ vpm_out(struct hfc_multi *c, int which, unsigned short addr, | |||
706 | } | 706 | } |
707 | 707 | ||
708 | 708 | ||
709 | void | 709 | static void |
710 | vpm_init(struct hfc_multi *wc) | 710 | vpm_init(struct hfc_multi *wc) |
711 | { | 711 | { |
712 | unsigned char reg; | 712 | unsigned char reg; |
@@ -789,7 +789,7 @@ vpm_init(struct hfc_multi *wc) | |||
789 | } | 789 | } |
790 | } | 790 | } |
791 | 791 | ||
792 | void | 792 | static void |
793 | vpm_check(struct hfc_multi *hctmp) | 793 | vpm_check(struct hfc_multi *hctmp) |
794 | { | 794 | { |
795 | unsigned char gpi2; | 795 | unsigned char gpi2; |
@@ -812,7 +812,7 @@ vpm_check(struct hfc_multi *hctmp) | |||
812 | * | 812 | * |
813 | */ | 813 | */ |
814 | 814 | ||
815 | void | 815 | static void |
816 | vpm_echocan_on(struct hfc_multi *hc, int ch, int taps) | 816 | vpm_echocan_on(struct hfc_multi *hc, int ch, int taps) |
817 | { | 817 | { |
818 | unsigned int timeslot; | 818 | unsigned int timeslot; |
@@ -844,7 +844,7 @@ vpm_echocan_on(struct hfc_multi *hc, int ch, int taps) | |||
844 | vpm_out(hc, unit, timeslot, 0x7e); | 844 | vpm_out(hc, unit, timeslot, 0x7e); |
845 | } | 845 | } |
846 | 846 | ||
847 | void | 847 | static void |
848 | vpm_echocan_off(struct hfc_multi *hc, int ch) | 848 | vpm_echocan_off(struct hfc_multi *hc, int ch) |
849 | { | 849 | { |
850 | unsigned int timeslot; | 850 | unsigned int timeslot; |