From: Jan Beulich Date: Fri, 20 Nov 2009 13:50:53 +0000 (+0000) Subject: USB: fix section mismatch in early ehci dbgp X-Git-Tag: v2.6.33-rc2~11^2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=40b52371be92cf9990de162e4c7b4fd9160150a7;p=platform%2Fkernel%2Flinux-3.10.git USB: fix section mismatch in early ehci dbgp Commit 917778267fbe67703ab7d5c6f0b7a05d4c3df485 removed __init from ehci_wait_for_port(), but left it in place on ehci_reset_port(), which is being called from the former function. Signed-off-by: Jan Beulich Acked-by: Jason Wessel Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/early/ehci-dbgp.c b/drivers/usb/early/ehci-dbgp.c index 1206a26..2958a12 100644 --- a/drivers/usb/early/ehci-dbgp.c +++ b/drivers/usb/early/ehci-dbgp.c @@ -613,7 +613,7 @@ err: } EXPORT_SYMBOL_GPL(dbgp_external_startup); -static int __init ehci_reset_port(int port) +static int ehci_reset_port(int port) { u32 portsc; u32 delay_time, delay;