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/ix1_micro.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/ix1_micro.c')
-rw-r--r-- | drivers/isdn/hisax/ix1_micro.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/isdn/hisax/ix1_micro.c b/drivers/isdn/hisax/ix1_micro.c index 908a7e144421..39717506c678 100644 --- a/drivers/isdn/hisax/ix1_micro.c +++ b/drivers/isdn/hisax/ix1_micro.c | |||
@@ -210,7 +210,7 @@ ix1_card_msg(struct IsdnCardState *cs, int mt, void *arg) | |||
210 | } | 210 | } |
211 | 211 | ||
212 | #ifdef __ISAPNP__ | 212 | #ifdef __ISAPNP__ |
213 | static struct isapnp_device_id itk_ids[] __initdata = { | 213 | static struct isapnp_device_id itk_ids[] __devinitdata = { |
214 | { ISAPNP_VENDOR('I', 'T', 'K'), ISAPNP_FUNCTION(0x25), | 214 | { ISAPNP_VENDOR('I', 'T', 'K'), ISAPNP_FUNCTION(0x25), |
215 | ISAPNP_VENDOR('I', 'T', 'K'), ISAPNP_FUNCTION(0x25), | 215 | ISAPNP_VENDOR('I', 'T', 'K'), ISAPNP_FUNCTION(0x25), |
216 | (unsigned long) "ITK micro 2" }, | 216 | (unsigned long) "ITK micro 2" }, |
@@ -220,12 +220,12 @@ static struct isapnp_device_id itk_ids[] __initdata = { | |||
220 | { 0, } | 220 | { 0, } |
221 | }; | 221 | }; |
222 | 222 | ||
223 | static struct isapnp_device_id *ipid __initdata = &itk_ids[0]; | 223 | static struct isapnp_device_id *ipid __devinitdata = &itk_ids[0]; |
224 | static struct pnp_card *pnp_c __devinitdata = NULL; | 224 | static struct pnp_card *pnp_c __devinitdata = NULL; |
225 | #endif | 225 | #endif |
226 | 226 | ||
227 | 227 | ||
228 | int __init | 228 | int __devinit |
229 | setup_ix1micro(struct IsdnCard *card) | 229 | setup_ix1micro(struct IsdnCard *card) |
230 | { | 230 | { |
231 | struct IsdnCardState *cs = card->cs; | 231 | struct IsdnCardState *cs = card->cs; |