Char: riscom8, change rc_init_drivers prototype
Let compiler decide if the rc_init_drivers function will be inlined and mark it as __init, because it's called only from __init function. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
319fe7c347
commit
1386a820b3
1 changed files with 1 additions and 1 deletions
|
@ -1618,7 +1618,7 @@ static const struct tty_operations riscom_ops = {
|
|||
.tiocmset = rc_tiocmset,
|
||||
};
|
||||
|
||||
static inline int rc_init_drivers(void)
|
||||
static int __init rc_init_drivers(void)
|
||||
{
|
||||
int error;
|
||||
int i;
|
||||
|
|
Loading…
Reference in a new issue