diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-10-30 02:05:26 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-11-07 18:05:35 +0000 |
commit | 6a4dea1ddea9d95c165ed15f08fa4e4dbbce9b82 (patch) | |
tree | 99239dade4d9cac246080edee1779e6cedb09ed1 /sound/oss/au1000.c | |
parent | b0c705161f3088d384f755b0d92822a2214cba70 (diff) | |
download | linux-6a4dea1ddea9d95c165ed15f08fa4e4dbbce9b82.tar.gz linux-6a4dea1ddea9d95c165ed15f08fa4e4dbbce9b82.tar.bz2 linux-6a4dea1ddea9d95c165ed15f08fa4e4dbbce9b82.zip |
OSS MIPS drivers: "extern inline" -> "static inline"
"extern inline" doesn't make much sense.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
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) #define DMABUF_DEFAULTORDER (17-PAGE_SHIFT) #define DMABUF_MINORDER 1 -extern inline void dealloc_dmabuf(struct au1000_state *s, struct dmabuf *db) +static inline void dealloc_dmabuf(struct au1000_state *s, struct dmabuf *db) { struct page *page, *pend; @@ -667,14 +667,14 @@ static int prog_dmabuf(struct au1000_state *s, struct dmabuf *db) return 0; } -extern inline int prog_dmabuf_adc(struct au1000_state *s) +static inline int prog_dmabuf_adc(struct au1000_state *s) { stop_adc(s); return prog_dmabuf(s, &s->dma_adc); } -extern inline int prog_dmabuf_dac(struct au1000_state *s) +static inline int prog_dmabuf_dac(struct au1000_state *s) { stop_dac(s); return prog_dmabuf(s, &s->dma_dac); |