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
nexedi
linux
Commits
acf3fabb
Commit
acf3fabb
authored
Mar 15, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://bk.arm.linux.org.uk/linux-2.6-serial
into ppc970.osdl.org:/home/torvalds/v2.5/linux
parents
1893f0e5
b965eeb8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
9 deletions
+3
-9
drivers/serial/8250.c
drivers/serial/8250.c
+2
-0
drivers/serial/8250_acpi.c
drivers/serial/8250_acpi.c
+1
-2
drivers/serial/8250_hcdp.c
drivers/serial/8250_hcdp.c
+0
-2
include/linux/serialP.h
include/linux/serialP.h
+0
-5
No files found.
drivers/serial/8250.c
View file @
acf3fabb
...
...
@@ -30,6 +30,7 @@
#include <linux/serial.h>
#include <linux/serialP.h>
#include <linux/delay.h>
#include <linux/device.h>
#include <asm/io.h>
#include <asm/irq.h>
...
...
@@ -2194,3 +2195,4 @@ MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
MODULE_PARM
(
force_rsa
,
"1-"
__MODULE_STRING
(
PORT_RSA_MAX
)
"i"
);
MODULE_PARM_DESC
(
force_rsa
,
"Force I/O ports for RSA"
);
#endif
MODULE_ALIAS_CHARDEV_MAJOR
(
TTY_MAJOR
);
drivers/serial/8250_acpi.c
View file @
acf3fabb
...
...
@@ -134,8 +134,7 @@ static int acpi_serial_add(struct acpi_device *device)
}
serial_req
.
baud_base
=
BASE_BAUD
;
serial_req
.
flags
=
UPF_SKIP_TEST
|
UPF_BOOT_AUTOCONF
|
UPF_AUTO_IRQ
|
UPF_RESOURCES
;
serial_req
.
flags
=
UPF_SKIP_TEST
|
UPF_BOOT_AUTOCONF
|
UPF_RESOURCES
;
priv
->
line
=
register_serial
(
&
serial_req
);
if
(
priv
->
line
<
0
)
{
...
...
drivers/serial/8250_hcdp.c
View file @
acf3fabb
...
...
@@ -186,8 +186,6 @@ setup_serial_hcdp(void *tablep)
port
.
irq
=
gsi
;
#endif
port
.
flags
=
UPF_SKIP_TEST
|
UPF_BOOT_AUTOCONF
|
UPF_RESOURCES
;
if
(
gsi
)
port
.
flags
|=
ASYNC_AUTO_IRQ
;
/*
* Note: the above memset() initializes port.line to 0,
...
...
include/linux/serialP.h
View file @
acf3fabb
...
...
@@ -26,11 +26,6 @@
#include <linux/interrupt.h>
#include <linux/circ_buf.h>
#include <linux/wait.h>
#if (LINUX_VERSION_CODE < 0x020300)
/* Unfortunate, but Linux 2.2 needs async_icount defined here and
* it got moved in 2.3 */
#include <linux/serial.h>
#endif
struct
serial_state
{
int
magic
;
...
...
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