Commit 0ea2b4b1 authored by Jiri Slaby's avatar Jiri Slaby Committed by Adrian Bunk

Char: icom, mark __init as __devinit

Two functions are called from __devinit context, but they are marked as
__init. Fix this.
Signed-off-by: default avatarJiri Slaby <jirislaby@gmail.com>
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
parent 70272a6c
......@@ -166,7 +166,7 @@ static void free_port_memory(struct icom_port *icom_port)
}
}
static int __init get_port_memory(struct icom_port *icom_port)
static int __devinit get_port_memory(struct icom_port *icom_port)
{
int index;
unsigned long stgAddr;
......@@ -1383,7 +1383,7 @@ static void icom_port_active(struct icom_port *icom_port, struct icom_adapter *i
0x8024 + 2 - 2 * (icom_port->port - 2);
}
}
static int __init icom_load_ports(struct icom_adapter *icom_adapter)
static int __devinit icom_load_ports(struct icom_adapter *icom_adapter)
{
struct icom_port *icom_port;
int port_num;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment