mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
[ISDN]: fix section mismatch warning in enpci_card_msg
Fix following warnings: WARNING: drivers/isdn/hisax/built-in.o(.text+0x3cf50): Section mismatch in reference from the function enpci_card_msg() to the function .devinit.text:Amd7930_init() WARNING: drivers/isdn/hisax/built-in.o(.text+0x3cf85): Section mismatch in reference from the function enpci_card_msg() to the function .devinit.text:Amd7930_init() enpci_card_msg() can be called outside __devinit context referenced function should not be annotated __devinit. Remove annotation of Amd7930_init to fix this. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
bca65eae39
commit
054b0e2b2d
1 changed files with 1 additions and 2 deletions
|
@ -744,8 +744,7 @@ dbusy_timer_handler(struct IsdnCardState *cs)
|
|||
|
||||
|
||||
|
||||
void __devinit
|
||||
Amd7930_init(struct IsdnCardState *cs)
|
||||
void Amd7930_init(struct IsdnCardState *cs)
|
||||
{
|
||||
WORD *ptr;
|
||||
BYTE cmd, cnt;
|
||||
|
|
Loading…
Reference in a new issue