9
0
Fork 0

netconsole: remove non-needed setbaudrate

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2010-09-23 22:08:34 +02:00 committed by Sascha Hauer
parent d424ce77f5
commit 0231b5b3a7
1 changed files with 0 additions and 6 deletions

View File

@ -124,11 +124,6 @@ static void nc_putc(struct console_device *cdev, char c)
priv->busy = 0;
}
static int nc_setbaudrate(struct console_device *cdev, int baudrate)
{
return 0;
}
static int nc_port_set(struct device_d *dev, struct param_d *param,
const char *val)
{
@ -185,7 +180,6 @@ static int netconsole_init(void)
cdev->tstc = nc_tstc;
cdev->putc = nc_putc;
cdev->getc = nc_getc;
cdev->setbrg = nc_setbaudrate;
g_priv = priv;