isdn: fix section mismatch warning for ISACVer

Fix following warnings:
WARNING: drivers/isdn/hisax/built-in.o(.text+0x19723): Section mismatch in reference from the function ISACVersion() to the variable .devinit.data:ISACVer
WARNING: drivers/isdn/hisax/built-in.o(.text+0x2005b): Section mismatch in reference from the function setup_avm_a1_pcmcia() to the function .devinit.text:setup_isac()

ISACVer were only used from function annotated __devinit
so add same annotation to ISACVer.
One af the fererencing functions missed __devinit so add it
and kill an additional warning.

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Acked-by: Karsten Keil <kkeil@suse.de>
Cc: Jeff Garzik <jgarzik@pobox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Sam Ravnborg and committed by David S. Miller f4e64333 2fddb6e2

+2 -4
+1 -2
drivers/isdn/hisax/avm_a1p.c
··· 213 213 return 0; 214 214 } 215 215 216 - int 217 - setup_avm_a1_pcmcia(struct IsdnCard *card) 216 + int __devinit setup_avm_a1_pcmcia(struct IsdnCard *card) 218 217 { 219 218 u_char model, vers; 220 219 struct IsdnCardState *cs = card->cs;
+1 -2
drivers/isdn/hisax/isac.c
··· 27 27 {"2086/2186 V1.1", "2085 B1", "2085 B2", 28 28 "2085 V2.3"}; 29 29 30 - void 31 - ISACVersion(struct IsdnCardState *cs, char *s) 30 + void __devinit ISACVersion(struct IsdnCardState *cs, char *s) 32 31 { 33 32 int val; 34 33