Merge branch 'omap3-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6 into devel
This commit is contained in:
@@ -2149,7 +2149,7 @@ out4:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static struct ioc3_submodule ioc3uart_submodule = {
|
||||
static struct ioc3_submodule ioc3uart_ops = {
|
||||
.name = "IOC3uart",
|
||||
.probe = ioc3uart_probe,
|
||||
.remove = ioc3uart_remove,
|
||||
@@ -2173,7 +2173,7 @@ static int __devinit ioc3uart_init(void)
|
||||
__func__);
|
||||
return ret;
|
||||
}
|
||||
ret = ioc3_register_submodule(&ioc3uart_submodule);
|
||||
ret = ioc3_register_submodule(&ioc3uart_ops);
|
||||
if (ret)
|
||||
uart_unregister_driver(&ioc3_uart);
|
||||
return ret;
|
||||
@@ -2181,7 +2181,7 @@ static int __devinit ioc3uart_init(void)
|
||||
|
||||
static void __devexit ioc3uart_exit(void)
|
||||
{
|
||||
ioc3_unregister_submodule(&ioc3uart_submodule);
|
||||
ioc3_unregister_submodule(&ioc3uart_ops);
|
||||
uart_unregister_driver(&ioc3_uart);
|
||||
}
|
||||
|
||||
|
@@ -591,8 +591,8 @@ mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new,
|
||||
/* Update the per-port timeout */
|
||||
uart_update_timeout(port, new->c_cflag, baud);
|
||||
|
||||
/* Do our best to flush TX & RX, so we don't loose anything */
|
||||
/* But we don't wait indefinitly ! */
|
||||
/* Do our best to flush TX & RX, so we don't lose anything */
|
||||
/* But we don't wait indefinitely ! */
|
||||
j = 5000000; /* Maximum wait */
|
||||
/* FIXME Can't receive chars since set_termios might be called at early
|
||||
* boot for the console, all stuff is not yet ready to receive at that
|
||||
|
@@ -177,5 +177,5 @@ module_exit(s3c2440_serial_exit);
|
||||
|
||||
MODULE_DESCRIPTION("Samsung S3C2440,S3C2442 SoC Serial port driver");
|
||||
MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
|
||||
MODULE_LICENSE("GPLi v2");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
MODULE_ALIAS("platform:s3c2440-uart");
|
||||
|
Reference in New Issue
Block a user