isdn: fix section mismatch warnings in isac.c and isar.c

Fix the following warnings:
WARNING: drivers/isdn/hisax/built-in.o(.text+0x1b276): Section mismatch in reference from the function inithscxisac() to the function .devinit.text:clear_pending_isac_ints()
WARNING: drivers/isdn/hisax/built-in.o(.text+0x1b286): Section mismatch in reference from the function inithscxisac() to the function .devinit.text:initisac()
WARNING: drivers/isdn/hisax/built-in.o(.text+0x1fec7): Section mismatch in reference from the function AVM_card_msg() to the function .devinit.text:clear_pending_isac_ints()
WARNING: drivers/isdn/hisax/built-in.o(.text+0x21669): Section mismatch in reference from the function AVM_card_msg() to the function .devinit.text:clear_pending_isac_ints()
WARNING: drivers/isdn/hisax/built-in.o(.text+0x21671): Section mismatch in reference from the function AVM_card_msg() to the function .devinit.text:initisac()
WARNING: drivers/isdn/hisax/built-in.o(.text+0x2991e): Section mismatch in reference from the function Sedl_card_msg() to the function .devinit.text:clear_pending_isac_ints()
WARNING: drivers/isdn/hisax/built-in.o(.text+0x29936): Section mismatch in reference from the function Sedl_card_msg() to the function .devinit.text:initisac()
WARNING: drivers/isdn/hisax/built-in.o(.text+0x2993e): Section mismatch in reference from the function Sedl_card_msg() to the function .devinit.text:initisar()
WARNING: drivers/isdn/hisax/built-in.o(.text+0x2e026): Section mismatch in reference from the function NETjet_S_card_msg() to the function .devinit.text:clear_pending_isac_ints()
WARNING: drivers/isdn/hisax/built-in.o(.text+0x2e02e): Section mismatch in reference from the function NETjet_S_card_msg() to the function .devinit.text:initisac()
WARNING: drivers/isdn/hisax/built-in.o(.text+0x37813): Section mismatch in reference from the function BKM_card_msg() to the function .devinit.text:clear_pending_isac_ints()
WARNING: drivers/isdn/hisax/built-in.o(.text+0x37823): Section mismatch in reference from the function BKM_card_msg() to the function .devinit.text:initisac()

initisar(), initisac() and clear_pending_isac_ints()
were all used via a cardmsg fnction - which may be called
ouside __devinit context.
So remove the bogus __devinit annotation of the
above three functions to fix the warnings.

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 d348c2a3 7740ac6a

+3 -6
+2 -4
drivers/isdn/hisax/isac.c
··· 616 } 617 } 618 619 - void __devinit 620 - initisac(struct IsdnCardState *cs) 621 { 622 cs->setstack_d = setstack_isac; 623 cs->DC_Close = DC_Close_isac; ··· 647 cs->writeisac(cs, ISAC_MASK, 0x0); 648 } 649 650 - void __devinit 651 - clear_pending_isac_ints(struct IsdnCardState *cs) 652 { 653 int val, eval; 654
··· 616 } 617 } 618 619 + void initisac(struct IsdnCardState *cs) 620 { 621 cs->setstack_d = setstack_isac; 622 cs->DC_Close = DC_Close_isac; ··· 648 cs->writeisac(cs, ISAC_MASK, 0x0); 649 } 650 651 + void clear_pending_isac_ints(struct IsdnCardState *cs) 652 { 653 int val, eval; 654
+1 -2
drivers/isdn/hisax/isar.c
··· 1894 return(0); 1895 } 1896 1897 - void __devinit 1898 - initisar(struct IsdnCardState *cs) 1899 { 1900 cs->bcs[0].BC_SetStack = setstack_isar; 1901 cs->bcs[1].BC_SetStack = setstack_isar;
··· 1894 return(0); 1895 } 1896 1897 + void initisar(struct IsdnCardState *cs) 1898 { 1899 cs->bcs[0].BC_SetStack = setstack_isar; 1900 cs->bcs[1].BC_SetStack = setstack_isar;