forked from Minki/linux
parport: section fixup
Fix section warning for parport_ECP_supported(); it's called from a routine exported to modules, so it can't be removed with __devinit section pruning. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
df24d9a6a9
commit
55265b00ad
@ -1768,7 +1768,7 @@ static int parport_PS2_supported(struct parport *pb)
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PARPORT_PC_FIFO
|
||||
static int __devinit parport_ECP_supported(struct parport *pb)
|
||||
static int parport_ECP_supported(struct parport *pb)
|
||||
{
|
||||
int i;
|
||||
int config, configb;
|
||||
@ -1992,7 +1992,7 @@ static int parport_ECPEPP_supported(struct parport *pb)
|
||||
/* Don't bother probing for modes we know we won't use. */
|
||||
static int __devinit parport_PS2_supported(struct parport *pb) { return 0; }
|
||||
#ifdef CONFIG_PARPORT_PC_FIFO
|
||||
static int __devinit parport_ECP_supported(struct parport *pb) { return 0; }
|
||||
static int parport_ECP_supported(struct parport *pb) { return 0; }
|
||||
#endif
|
||||
static int __devinit parport_EPP_supported(struct parport *pb) { return 0; }
|
||||
static int __devinit parport_ECPEPP_supported(struct parport *pb){return 0;}
|
||||
|
Loading…
Reference in New Issue
Block a user