diff options
Diffstat (limited to 'sound/oss/au1000.c')
-rw-r--r-- | sound/oss/au1000.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/oss/au1000.c b/sound/oss/au1000.c index 2c2ae2ee01ac..c407de86cbb6 100644 --- a/sound/oss/au1000.c +++ b/sound/oss/au1000.c | |||
@@ -563,7 +563,7 @@ static void start_adc(struct au1000_state *s) | |||
563 | #define DMABUF_DEFAULTORDER (17-PAGE_SHIFT) | 563 | #define DMABUF_DEFAULTORDER (17-PAGE_SHIFT) |
564 | #define DMABUF_MINORDER 1 | 564 | #define DMABUF_MINORDER 1 |
565 | 565 | ||
566 | extern inline void dealloc_dmabuf(struct au1000_state *s, struct dmabuf *db) | 566 | static inline void dealloc_dmabuf(struct au1000_state *s, struct dmabuf *db) |
567 | { | 567 | { |
568 | struct page *page, *pend; | 568 | struct page *page, *pend; |
569 | 569 | ||
@@ -667,14 +667,14 @@ static int prog_dmabuf(struct au1000_state *s, struct dmabuf *db) | |||
667 | return 0; | 667 | return 0; |
668 | } | 668 | } |
669 | 669 | ||
670 | extern inline int prog_dmabuf_adc(struct au1000_state *s) | 670 | static inline int prog_dmabuf_adc(struct au1000_state *s) |
671 | { | 671 | { |
672 | stop_adc(s); | 672 | stop_adc(s); |
673 | return prog_dmabuf(s, &s->dma_adc); | 673 | return prog_dmabuf(s, &s->dma_adc); |
674 | 674 | ||
675 | } | 675 | } |
676 | 676 | ||
677 | extern inline int prog_dmabuf_dac(struct au1000_state *s) | 677 | static inline int prog_dmabuf_dac(struct au1000_state *s) |
678 | { | 678 | { |
679 | stop_dac(s); | 679 | stop_dac(s); |
680 | return prog_dmabuf(s, &s->dma_dac); | 680 | return prog_dmabuf(s, &s->dma_dac); |