diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2005-09-05 18:16:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-05 18:16:37 +0000 |
commit | 46d26d3d21ff41003b5a0b2598cb30e1950a4862 (patch) | |
tree | bf8a0d6ed80ac394cc9e488548df2c409c6797c1 /packages/linux/linux-openzaurus-2.6.11/pxa-serial-hack.patch | |
parent | 23379302435b880760cb8a65fe01b9c319276ec9 (diff) |
linux-oz-2.6: Add the rw option to the correct spitz kernel. Remove the two older versions as they are out of date and 2.6.13-mm1 should be better in all respects. If there are bugs, please report them so we can fix them.
Diffstat (limited to 'packages/linux/linux-openzaurus-2.6.11/pxa-serial-hack.patch')
-rw-r--r-- | packages/linux/linux-openzaurus-2.6.11/pxa-serial-hack.patch | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/packages/linux/linux-openzaurus-2.6.11/pxa-serial-hack.patch b/packages/linux/linux-openzaurus-2.6.11/pxa-serial-hack.patch deleted file mode 100644 index 5624572fa1..0000000000 --- a/packages/linux/linux-openzaurus-2.6.11/pxa-serial-hack.patch +++ /dev/null @@ -1,50 +0,0 @@ -Index: 2.6-bk/drivers/serial/8250.c -=================================================================== ---- 2.6-bk.orig/drivers/serial/8250.c 2004-09-15 11:00:58.000000000 +0100 -+++ 2.6-bk/drivers/serial/8250.c 2004-09-30 13:23:22.202968787 +0100 -@@ -2033,7 +2033,12 @@ - .devfs_name = "tts/", - .dev_name = "ttyS", - .major = TTY_MAJOR, -+#ifdef CONFIG_SERIAL_PXA -+ .minor = 64 + 3, -+ .name_base = 3, -+#else - .minor = 64, -+#endif - .nr = UART_NR, - .cons = SERIAL8250_CONSOLE, - }; -Index: 2.6-bk/drivers/serial/serial_core.c -=================================================================== ---- 2.6-bk.orig/drivers/serial/serial_core.c 2004-09-30 09:03:27.000000000 +0100 -+++ 2.6-bk/drivers/serial/serial_core.c 2004-09-30 13:23:22.205967977 +0100 -@@ -1958,7 +1958,7 @@ - static inline void - uart_report_port(struct uart_driver *drv, struct uart_port *port) - { -- printk("%s%d", drv->dev_name, port->line); -+ printk("%s%d", drv->dev_name, port->line + drv->name_base); - printk(" at "); - switch (port->iotype) { - case UPIO_PORT: -@@ -2127,6 +2127,7 @@ - normal->driver_name = drv->driver_name; - normal->devfs_name = drv->devfs_name; - normal->name = drv->dev_name; -+ normal->name_base = drv->name_base; - normal->major = drv->major; - normal->minor_start = drv->minor; - normal->type = TTY_DRIVER_TYPE_SERIAL; -Index: 2.6-bk/include/linux/serial_core.h -=================================================================== ---- 2.6-bk.orig/include/linux/serial_core.h 2004-09-15 11:00:59.000000000 +0100 -+++ 2.6-bk/include/linux/serial_core.h 2004-09-30 13:23:22.206967707 +0100 -@@ -290,6 +290,7 @@ - const char *driver_name; - const char *dev_name; - const char *devfs_name; -+ int name_base; - int major; - int minor; - int nr; |