projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[brcm63xx] fix gpio button key code, match button-hotplug code
[openwrt.git]
/
target
/
linux
/
xburst
/
patches-2.6.32
/
103-serial.patch
diff --git
a/target/linux/xburst/patches-2.6.32/103-serial.patch
b/target/linux/xburst/patches-2.6.32/103-serial.patch
index
2401248
..
2810631
100644
(file)
--- a/
target/linux/xburst/patches-2.6.32/103-serial.patch
+++ b/
target/linux/xburst/patches-2.6.32/103-serial.patch
@@
-9,7
+9,7
@@
Subject: [PATCH] /opt/Projects/openwrt/target/linux/xburst/patches-2.6.31/103-se
--- a/drivers/serial/8250.c
+++ b/drivers/serial/8250.c
--- a/drivers/serial/8250.c
+++ b/drivers/serial/8250.c
-@@ -19
6,7 +196
,7 @@ static const struct serial8250_config ua
+@@ -19
9,7 +199
,7 @@ static const struct serial8250_config ua
[PORT_16550A] = {
.name = "16550A",
.fifo_size = 16,
[PORT_16550A] = {
.name = "16550A",
.fifo_size = 16,
@@
-18,7
+18,7
@@
Subject: [PATCH] /opt/Projects/openwrt/target/linux/xburst/patches-2.6.31/103-se
.fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
.flags = UART_CAP_FIFO,
},
.fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
.flags = UART_CAP_FIFO,
},
-@@ -40
3,6 +403
,10 @@ static unsigned int mem_serial_in(struct
+@@ -40
6,6 +406
,10 @@ static unsigned int mem_serial_in(struct
static void mem_serial_out(struct uart_port *p, int offset, int value)
{
offset = map_8250_out_reg(p, offset) << p->regshift;
static void mem_serial_out(struct uart_port *p, int offset, int value)
{
offset = map_8250_out_reg(p, offset) << p->regshift;
@@
-29,7
+29,7
@@
Subject: [PATCH] /opt/Projects/openwrt/target/linux/xburst/patches-2.6.31/103-se
writeb(value, p->membase + offset);
}
writeb(value, p->membase + offset);
}
-@@ -221
3,6 +2217
,83 @@ static void serial8250_shutdown(struct u
+@@ -221
4,6 +2218
,83 @@ static void serial8250_shutdown(struct u
serial_unlink_irq_chain(up);
}
serial_unlink_irq_chain(up);
}
@@
-113,7
+113,7
@@
Subject: [PATCH] /opt/Projects/openwrt/target/linux/xburst/patches-2.6.31/103-se
static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
{
unsigned int quot;
static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
{
unsigned int quot;
-@@ -223
2,6 +2313
,7 @@ static unsigned int serial8250_get_divis
+@@ -223
3,6 +2314
,7 @@ static unsigned int serial8250_get_divis
return quot;
}
return quot;
}
@@
-121,7
+121,7
@@
Subject: [PATCH] /opt/Projects/openwrt/target/linux/xburst/patches-2.6.31/103-se
static void
serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
static void
serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
-@@ -224
1,6 +2323
,9 @@ serial8250_set_termios(struct uart_port
+@@ -224
2,6 +2324
,9 @@ serial8250_set_termios(struct uart_port
unsigned char cval, fcr = 0;
unsigned long flags;
unsigned int baud, quot;
unsigned char cval, fcr = 0;
unsigned long flags;
unsigned int baud, quot;
@@
-131,7
+131,7
@@
Subject: [PATCH] /opt/Projects/openwrt/target/linux/xburst/patches-2.6.31/103-se
switch (termios->c_cflag & CSIZE) {
case CS5:
switch (termios->c_cflag & CSIZE) {
case CS5:
-@@ -227
5,7 +2360
,12 @@ serial8250_set_termios(struct uart_port
+@@ -227
6,7 +2361
,12 @@ serial8250_set_termios(struct uart_port
baud = uart_get_baud_rate(port, termios, old,
port->uartclk / 16 / 0xffff,
port->uartclk / 16);
baud = uart_get_baud_rate(port, termios, old,
port->uartclk / 16 / 0xffff,
port->uartclk / 16);
@@
-144,7
+144,7
@@
Subject: [PATCH] /opt/Projects/openwrt/target/linux/xburst/patches-2.6.31/103-se
/*
* Oxford Semi 952 rev B workaround
/*
* Oxford Semi 952 rev B workaround
-@@ -235
3,6 +2443
,10 @@ serial8250_set_termios(struct uart_port
+@@ -235
4,6 +2444
,10 @@ serial8250_set_termios(struct uart_port
if (up->capabilities & UART_CAP_UUE)
up->ier |= UART_IER_UUE | UART_IER_RTOIE;
if (up->capabilities & UART_CAP_UUE)
up->ier |= UART_IER_UUE | UART_IER_RTOIE;
@@
-155,7
+155,7
@@
Subject: [PATCH] /opt/Projects/openwrt/target/linux/xburst/patches-2.6.31/103-se
serial_out(up, UART_IER, up->ier);
if (up->capabilities & UART_CAP_EFR) {
serial_out(up, UART_IER, up->ier);
if (up->capabilities & UART_CAP_EFR) {
-@@ -238
7,7 +2481
,15 @@ serial8250_set_termios(struct uart_port
+@@ -238
8,7 +2482
,15 @@ serial8250_set_termios(struct uart_port
serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
}
serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
}
This page took
0.030087 seconds
and
4
git commands to generate.