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
5d240918
Commit
5d240918
authored
Nov 28, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge master.kernel.org:/home/rmk/linux-2.6-serial
parents
cba2fa18
cb3592be
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
6 deletions
+9
-6
drivers/serial/8250.c
drivers/serial/8250.c
+1
-1
drivers/serial/8250_pci.c
drivers/serial/8250_pci.c
+1
-1
drivers/serial/serial_core.c
drivers/serial/serial_core.c
+1
-1
drivers/serial/serial_cs.c
drivers/serial/serial_cs.c
+3
-3
include/linux/serial_core.h
include/linux/serial_core.h
+3
-0
No files found.
drivers/serial/8250.c
View file @
5d240918
...
@@ -102,7 +102,7 @@ static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
...
@@ -102,7 +102,7 @@ static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
#define SERIAL_PORT_DFNS
#define SERIAL_PORT_DFNS
#endif
#endif
static
struct
old_serial_port
old_serial_port
[]
=
{
static
const
struct
old_serial_port
old_serial_port
[]
=
{
SERIAL_PORT_DFNS
/* defined in asm/serial.h */
SERIAL_PORT_DFNS
/* defined in asm/serial.h */
};
};
...
...
drivers/serial/8250_pci.c
View file @
5d240918
...
@@ -468,7 +468,7 @@ static unsigned short timedia_eight_port[] = {
...
@@ -468,7 +468,7 @@ static unsigned short timedia_eight_port[] = {
0x9167
,
0x9168
,
0xA066
,
0xA167
,
0xA168
,
0
0x9167
,
0x9168
,
0xA066
,
0xA167
,
0xA168
,
0
};
};
static
struct
timedia_struct
{
static
const
struct
timedia_struct
{
int
num
;
int
num
;
unsigned
short
*
ids
;
unsigned
short
*
ids
;
}
timedia_data
[]
=
{
}
timedia_data
[]
=
{
...
...
drivers/serial/serial_core.c
View file @
5d240918
...
@@ -1779,7 +1779,7 @@ struct baud_rates {
...
@@ -1779,7 +1779,7 @@ struct baud_rates {
unsigned
int
cflag
;
unsigned
int
cflag
;
};
};
static
struct
baud_rates
baud_rates
[]
=
{
static
const
struct
baud_rates
baud_rates
[]
=
{
{
921600
,
B921600
},
{
921600
,
B921600
},
{
460800
,
B460800
},
{
460800
,
B460800
},
{
230400
,
B230400
},
{
230400
,
B230400
},
...
...
drivers/serial/serial_cs.c
View file @
5d240918
...
@@ -85,7 +85,7 @@ struct multi_id {
...
@@ -85,7 +85,7 @@ struct multi_id {
int
multi
;
/* 1 = multifunction, > 1 = # ports */
int
multi
;
/* 1 = multifunction, > 1 = # ports */
};
};
static
struct
multi_id
multi_id
[]
=
{
static
const
struct
multi_id
multi_id
[]
=
{
{
MANFID_OMEGA
,
PRODID_OMEGA_QSP_100
,
4
},
{
MANFID_OMEGA
,
PRODID_OMEGA_QSP_100
,
4
},
{
MANFID_QUATECH
,
PRODID_QUATECH_DUAL_RS232
,
2
},
{
MANFID_QUATECH
,
PRODID_QUATECH_DUAL_RS232
,
2
},
{
MANFID_QUATECH
,
PRODID_QUATECH_DUAL_RS232_D1
,
2
},
{
MANFID_QUATECH
,
PRODID_QUATECH_DUAL_RS232_D1
,
2
},
...
@@ -354,8 +354,8 @@ next_tuple(client_handle_t handle, tuple_t * tuple, cisparse_t * parse)
...
@@ -354,8 +354,8 @@ next_tuple(client_handle_t handle, tuple_t * tuple, cisparse_t * parse)
static
int
simple_config
(
dev_link_t
*
link
)
static
int
simple_config
(
dev_link_t
*
link
)
{
{
static
kio_addr_t
base
[
5
]
=
{
0x3f8
,
0x2f8
,
0x3e8
,
0x2e8
,
0x0
};
static
const
kio_addr_t
base
[
5
]
=
{
0x3f8
,
0x2f8
,
0x3e8
,
0x2e8
,
0x0
};
static
int
size_table
[
2
]
=
{
8
,
16
};
static
const
int
size_table
[
2
]
=
{
8
,
16
};
client_handle_t
handle
=
link
->
handle
;
client_handle_t
handle
=
link
->
handle
;
struct
serial_info
*
info
=
link
->
priv
;
struct
serial_info
*
info
=
link
->
priv
;
struct
serial_cfg_mem
*
cfg_mem
;
struct
serial_cfg_mem
*
cfg_mem
;
...
...
include/linux/serial_core.h
View file @
5d240918
...
@@ -121,6 +121,9 @@
...
@@ -121,6 +121,9 @@
#define PORT_IP3106 70
#define PORT_IP3106 70
/* Hilscher netx */
#define PORT_NETX 71
#ifdef __KERNEL__
#ifdef __KERNEL__
#include <linux/config.h>
#include <linux/config.h>
...
...
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