Commit b7b4d7a4666454b40b45a853bd1d296af37a85f0
Committed by
Linus Torvalds
1 parent
2a10e0b28b
Exists in
master
and in
7 other branches
[PATCH] drivers/isdn/: "extern inline" -> "static inline"
"extern inline" -> "static inline" Since there's no pullphone() function this patch removes the dead prototype. Signed-off-by: Adrian Bunk <bunk@stusta.de> Acked-by: Karsten Keil <kkeil@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Showing 3 changed files with 4 additions and 5 deletions Side-by-side Diff
drivers/isdn/act2000/act2000.h
... | ... | @@ -181,17 +181,17 @@ |
181 | 181 | char regname[35]; /* Name used for request_region */ |
182 | 182 | } act2000_card; |
183 | 183 | |
184 | -extern __inline__ void act2000_schedule_tx(act2000_card *card) | |
184 | +static inline void act2000_schedule_tx(act2000_card *card) | |
185 | 185 | { |
186 | 186 | schedule_work(&card->snd_tq); |
187 | 187 | } |
188 | 188 | |
189 | -extern __inline__ void act2000_schedule_rx(act2000_card *card) | |
189 | +static inline void act2000_schedule_rx(act2000_card *card) | |
190 | 190 | { |
191 | 191 | schedule_work(&card->rcv_tq); |
192 | 192 | } |
193 | 193 | |
194 | -extern __inline__ void act2000_schedule_poll(act2000_card *card) | |
194 | +static inline void act2000_schedule_poll(act2000_card *card) | |
195 | 195 | { |
196 | 196 | schedule_work(&card->poll_tq); |
197 | 197 | } |
drivers/isdn/act2000/capi.h
drivers/isdn/sc/command.c