diff options
author | David Brownell <david-b@pacbell.net> | 2008-02-13 18:03:21 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-13 19:21:19 -0500 |
commit | 55265b00ad423898bb743bce515f073c3f290bdb (patch) | |
tree | 9482ac39aaa40c3af63c5dc48c38c8af674f0840 /drivers/parport | |
parent | df24d9a6a9014010513d6af1105f4de05c504a4b (diff) |
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>
Diffstat (limited to 'drivers/parport')
-rw-r--r-- | drivers/parport/parport_pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/parport/parport_pc.c b/drivers/parport/parport_pc.c index 238628d3a854..d76d37bcb9cc 100644 --- a/drivers/parport/parport_pc.c +++ b/drivers/parport/parport_pc.c | |||
@@ -1768,7 +1768,7 @@ static int parport_PS2_supported(struct parport *pb) | |||
1768 | } | 1768 | } |
1769 | 1769 | ||
1770 | #ifdef CONFIG_PARPORT_PC_FIFO | 1770 | #ifdef CONFIG_PARPORT_PC_FIFO |
1771 | static int __devinit parport_ECP_supported(struct parport *pb) | 1771 | static int parport_ECP_supported(struct parport *pb) |
1772 | { | 1772 | { |
1773 | int i; | 1773 | int i; |
1774 | int config, configb; | 1774 | int config, configb; |
@@ -1992,7 +1992,7 @@ static int parport_ECPEPP_supported(struct parport *pb) | |||
1992 | /* Don't bother probing for modes we know we won't use. */ | 1992 | /* Don't bother probing for modes we know we won't use. */ |
1993 | static int __devinit parport_PS2_supported(struct parport *pb) { return 0; } | 1993 | static int __devinit parport_PS2_supported(struct parport *pb) { return 0; } |
1994 | #ifdef CONFIG_PARPORT_PC_FIFO | 1994 | #ifdef CONFIG_PARPORT_PC_FIFO |
1995 | static int __devinit parport_ECP_supported(struct parport *pb) { return 0; } | 1995 | static int parport_ECP_supported(struct parport *pb) { return 0; } |
1996 | #endif | 1996 | #endif |
1997 | static int __devinit parport_EPP_supported(struct parport *pb) { return 0; } | 1997 | static int __devinit parport_EPP_supported(struct parport *pb) { return 0; } |
1998 | static int __devinit parport_ECPEPP_supported(struct parport *pb){return 0;} | 1998 | static int __devinit parport_ECPEPP_supported(struct parport *pb){return 0;} |