Commit 60691d3c authored by Heiko Carstens's avatar Heiko Carstens Committed by Martin Schwidefsky

[S390] Get rid of console setup functions.

We get this:

Section mismatch: reference to .init.text:con3270_consetup from .data
		  between 'con3270' (at offset 0x45c8) and 'con3270_fn'
Section mismatch: reference to .init.text:con3215_consetup from .data
		  between 'con3215' (at offset 0x4678) and
		  'raw3215_ccw_driver'

Since there is no difference between a non present console setup
function and one that returns only 0 remove them.
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
parent be5ec363
...@@ -813,12 +813,6 @@ con3215_unblank(void) ...@@ -813,12 +813,6 @@ con3215_unblank(void)
spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
} }
static int __init
con3215_consetup(struct console *co, char *options)
{
return 0;
}
/* /*
* The console structure for the 3215 console * The console structure for the 3215 console
*/ */
...@@ -827,7 +821,6 @@ static struct console con3215 = { ...@@ -827,7 +821,6 @@ static struct console con3215 = {
.write = con3215_write, .write = con3215_write,
.device = con3215_device, .device = con3215_device,
.unblank = con3215_unblank, .unblank = con3215_unblank,
.setup = con3215_consetup,
.flags = CON_PRINTBUFFER, .flags = CON_PRINTBUFFER,
}; };
......
...@@ -555,12 +555,6 @@ con3270_unblank(void) ...@@ -555,12 +555,6 @@ con3270_unblank(void)
spin_unlock_irqrestore(&cp->view.lock, flags); spin_unlock_irqrestore(&cp->view.lock, flags);
} }
static int __init
con3270_consetup(struct console *co, char *options)
{
return 0;
}
/* /*
* The console structure for the 3270 console * The console structure for the 3270 console
*/ */
...@@ -569,7 +563,6 @@ static struct console con3270 = { ...@@ -569,7 +563,6 @@ static struct console con3270 = {
.write = con3270_write, .write = con3270_write,
.device = con3270_device, .device = con3270_device,
.unblank = con3270_unblank, .unblank = con3270_unblank,
.setup = con3270_consetup,
.flags = CON_PRINTBUFFER, .flags = CON_PRINTBUFFER,
}; };
......
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