Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
881787a7
Commit
881787a7
authored
Sep 14, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge master.kernel.org:/home/rmk/linux-2.6-serial
parents
77b2555b
2d93486c
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
drivers/serial/21285.c
drivers/serial/21285.c
+1
-1
drivers/serial/amba-pl010.c
drivers/serial/amba-pl010.c
+1
-1
drivers/serial/amba-pl011.c
drivers/serial/amba-pl011.c
+1
-1
drivers/serial/clps711x.c
drivers/serial/clps711x.c
+1
-1
drivers/serial/pxa.c
drivers/serial/pxa.c
+2
-2
drivers/serial/sa1100.c
drivers/serial/sa1100.c
+1
-1
drivers/serial/serial_lh7a40x.c
drivers/serial/serial_lh7a40x.c
+1
-1
No files found.
drivers/serial/21285.c
View file @
881787a7
...
...
@@ -463,7 +463,7 @@ static int __init serial21285_console_setup(struct console *co, char *options)
return
uart_set_options
(
port
,
co
,
baud
,
parity
,
bits
,
flow
);
}
extern
struct
uart_driver
serial21285_reg
;
static
struct
uart_driver
serial21285_reg
;
static
struct
console
serial21285_console
=
{
...
...
drivers/serial/amba-pl010.c
View file @
881787a7
...
...
@@ -689,7 +689,7 @@ static int __init pl010_console_setup(struct console *co, char *options)
return
uart_set_options
(
port
,
co
,
baud
,
parity
,
bits
,
flow
);
}
extern
struct
uart_driver
amba_reg
;
static
struct
uart_driver
amba_reg
;
static
struct
console
amba_console
=
{
.
name
=
"ttyAM"
,
.
write
=
pl010_console_write
,
...
...
drivers/serial/amba-pl011.c
View file @
881787a7
...
...
@@ -701,7 +701,7 @@ static int __init pl011_console_setup(struct console *co, char *options)
return
uart_set_options
(
&
uap
->
port
,
co
,
baud
,
parity
,
bits
,
flow
);
}
extern
struct
uart_driver
amba_reg
;
static
struct
uart_driver
amba_reg
;
static
struct
console
amba_console
=
{
.
name
=
"ttyAMA"
,
.
write
=
pl011_console_write
,
...
...
drivers/serial/clps711x.c
View file @
881787a7
...
...
@@ -525,7 +525,7 @@ static int __init clps711xuart_console_setup(struct console *co, char *options)
return
uart_set_options
(
port
,
co
,
baud
,
parity
,
bits
,
flow
);
}
extern
struct
uart_driver
clps711x_reg
;
static
struct
uart_driver
clps711x_reg
;
static
struct
console
clps711x_console
=
{
.
name
=
"ttyCL"
,
.
write
=
clps711xuart_console_write
,
...
...
drivers/serial/pxa.c
View file @
881787a7
...
...
@@ -589,8 +589,8 @@ serial_pxa_type(struct uart_port *port)
#ifdef CONFIG_SERIAL_PXA_CONSOLE
extern
struct
uart_pxa_port
serial_pxa_ports
[];
extern
struct
uart_driver
serial_pxa_reg
;
static
struct
uart_pxa_port
serial_pxa_ports
[];
static
struct
uart_driver
serial_pxa_reg
;
#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
...
...
drivers/serial/sa1100.c
View file @
881787a7
...
...
@@ -799,7 +799,7 @@ sa1100_console_setup(struct console *co, char *options)
return
uart_set_options
(
&
sport
->
port
,
co
,
baud
,
parity
,
bits
,
flow
);
}
extern
struct
uart_driver
sa1100_reg
;
static
struct
uart_driver
sa1100_reg
;
static
struct
console
sa1100_console
=
{
.
name
=
"ttySA"
,
.
write
=
sa1100_console_write
,
...
...
drivers/serial/serial_lh7a40x.c
View file @
881787a7
...
...
@@ -632,7 +632,7 @@ static int __init lh7a40xuart_console_setup (struct console* co, char* options)
return
uart_set_options
(
port
,
co
,
baud
,
parity
,
bits
,
flow
);
}
extern
struct
uart_driver
lh7a40x_reg
;
static
struct
uart_driver
lh7a40x_reg
;
static
struct
console
lh7a40x_console
=
{
.
name
=
"ttyAM"
,
.
write
=
lh7a40xuart_console_write
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment