diff options
author | Karsten Keil <kkeil@suse.de> | 2006-07-10 07:44:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-10 16:24:15 -0400 |
commit | 67eb5db5874076db01febed5a1a9281628fa9fb4 (patch) | |
tree | 5116e91370d700c5eb497f13a24f10203baf5caa /drivers/isdn/hisax/jade.c | |
parent | acbf8bd738f1357e0e3b97b918bef5be272b176e (diff) |
[PATCH] hisax: fix usage of __init*
Fix the warnings about the section mismatches for __init* in the HiSax
driver.
Signed-off-by: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/isdn/hisax/jade.c')
-rw-r--r-- | drivers/isdn/hisax/jade.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/isdn/hisax/jade.c b/drivers/isdn/hisax/jade.c index 2659fecc2674..43d61d1bc5b6 100644 --- a/drivers/isdn/hisax/jade.c +++ b/drivers/isdn/hisax/jade.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include <linux/interrupt.h> | 19 | #include <linux/interrupt.h> |
20 | 20 | ||
21 | 21 | ||
22 | int __init | 22 | int |
23 | JadeVersion(struct IsdnCardState *cs, char *s) | 23 | JadeVersion(struct IsdnCardState *cs, char *s) |
24 | { | 24 | { |
25 | int ver,i; | 25 | int ver,i; |
@@ -253,7 +253,7 @@ setstack_jade(struct PStack *st, struct BCState *bcs) | |||
253 | return (0); | 253 | return (0); |
254 | } | 254 | } |
255 | 255 | ||
256 | void __init | 256 | void |
257 | clear_pending_jade_ints(struct IsdnCardState *cs) | 257 | clear_pending_jade_ints(struct IsdnCardState *cs) |
258 | { | 258 | { |
259 | int val; | 259 | int val; |
@@ -279,7 +279,7 @@ clear_pending_jade_ints(struct IsdnCardState *cs) | |||
279 | cs->BC_Write_Reg(cs, 1, jade_HDLC_IMR, 0xF8); | 279 | cs->BC_Write_Reg(cs, 1, jade_HDLC_IMR, 0xF8); |
280 | } | 280 | } |
281 | 281 | ||
282 | void __init | 282 | void |
283 | initjade(struct IsdnCardState *cs) | 283 | initjade(struct IsdnCardState *cs) |
284 | { | 284 | { |
285 | cs->bcs[0].BC_SetStack = setstack_jade; | 285 | cs->bcs[0].BC_SetStack = setstack_jade; |