ARM: OMAP: fix section mismatches in usb-host.c
Fix the below section mismatch warning and alike: WARNING: vmlinux.o(.text+0x281d4): Section mismatch in reference from the function setup_ehci_io_mux() to the function .init.text:omap_mux_init_signal() The function setup_ehci_io_mux() references the function __init omap_mux_init_signal(). This is often because setup_ehci_io_mux lacks a __init annotation or the annotation of omap_mux_init_signal is wrong. Signed-off-by: Igor Grinberg <grinberg@compulab.co.il> Reviewed-by: Shubhrajyoti D <shubhrajyoti@ti.com> Acked-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
b7782d3f08
commit
1512f0dbfb
|
@ -54,7 +54,7 @@ static struct omap_device_pm_latency omap_uhhtll_latency[] = {
|
||||||
/*
|
/*
|
||||||
* setup_ehci_io_mux - initialize IO pad mux for USBHOST
|
* setup_ehci_io_mux - initialize IO pad mux for USBHOST
|
||||||
*/
|
*/
|
||||||
static void setup_ehci_io_mux(const enum usbhs_omap_port_mode *port_mode)
|
static void __init setup_ehci_io_mux(const enum usbhs_omap_port_mode *port_mode)
|
||||||
{
|
{
|
||||||
switch (port_mode[0]) {
|
switch (port_mode[0]) {
|
||||||
case OMAP_EHCI_PORT_MODE_PHY:
|
case OMAP_EHCI_PORT_MODE_PHY:
|
||||||
|
@ -197,7 +197,8 @@ static void setup_ehci_io_mux(const enum usbhs_omap_port_mode *port_mode)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void setup_4430ehci_io_mux(const enum usbhs_omap_port_mode *port_mode)
|
static
|
||||||
|
void __init setup_4430ehci_io_mux(const enum usbhs_omap_port_mode *port_mode)
|
||||||
{
|
{
|
||||||
switch (port_mode[0]) {
|
switch (port_mode[0]) {
|
||||||
case OMAP_EHCI_PORT_MODE_PHY:
|
case OMAP_EHCI_PORT_MODE_PHY:
|
||||||
|
@ -315,7 +316,7 @@ static void setup_4430ehci_io_mux(const enum usbhs_omap_port_mode *port_mode)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void setup_ohci_io_mux(const enum usbhs_omap_port_mode *port_mode)
|
static void __init setup_ohci_io_mux(const enum usbhs_omap_port_mode *port_mode)
|
||||||
{
|
{
|
||||||
switch (port_mode[0]) {
|
switch (port_mode[0]) {
|
||||||
case OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0:
|
case OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0:
|
||||||
|
@ -412,7 +413,8 @@ static void setup_ohci_io_mux(const enum usbhs_omap_port_mode *port_mode)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void setup_4430ohci_io_mux(const enum usbhs_omap_port_mode *port_mode)
|
static
|
||||||
|
void __init setup_4430ohci_io_mux(const enum usbhs_omap_port_mode *port_mode)
|
||||||
{
|
{
|
||||||
switch (port_mode[0]) {
|
switch (port_mode[0]) {
|
||||||
case OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0:
|
case OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0:
|
||||||
|
|
Loading…
Reference in New Issue