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
7c05bbf9
Commit
7c05bbf9
authored
Oct 12, 2002
by
Russell King
Browse files
Options
Browse Files
Download
Plain Diff
Merge
http://linux.bkbits.net/linux-2.5
into flint.arm.linux.org.uk:/usr/src/linux-bk-2.5/linux-2.5-rmk
parents
f7353c67
92b0797e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
30 deletions
+9
-30
drivers/serial/8250.c
drivers/serial/8250.c
+1
-2
drivers/serial/8250_pci.c
drivers/serial/8250_pci.c
+2
-4
drivers/serial/core.c
drivers/serial/core.c
+2
-2
include/linux/serialP.h
include/linux/serialP.h
+4
-22
No files found.
drivers/serial/8250.c
View file @
7c05bbf9
...
...
@@ -33,7 +33,6 @@
#include <linux/serial_reg.h>
#include <linux/serial.h>
#include <linux/serialP.h>
#include <linux/serial.h>
#include <linux/delay.h>
#include <asm/io.h>
...
...
@@ -1636,7 +1635,7 @@ static void serial8250_config_port(struct uart_port *port, int flags)
if
(
up
->
port
.
type
!=
PORT_RSA
&&
res_rsa
)
release_resource
(
res_rsa
);
if
(
up
->
port
.
type
==
PORT_UNKNOWN
)
if
(
up
->
port
.
type
==
PORT_UNKNOWN
&&
res_std
)
release_resource
(
res_std
);
}
...
...
drivers/serial/8250_pci.c
View file @
7c05bbf9
...
...
@@ -22,10 +22,7 @@
#include <linux/slab.h>
#include <linux/serial.h>
/* 2.4.6 compatibility cruft - to be removed with the old serial.c code */
#define pci_board __pci_board
#include <linux/serialP.h>
#undef pci_board
#include <asm/bitops.h>
#include <asm/byteorder.h>
...
...
@@ -771,7 +768,8 @@ static void __devexit pci_remove_one(struct pci_dev *dev)
for
(
i
=
0
;
i
<
priv
->
nr
;
i
++
)
unregister_serial
(
priv
->
line
[
i
]);
priv
->
board
->
init_fn
(
dev
,
priv
->
board
,
0
);
if
(
priv
->
board
->
init_fn
)
priv
->
board
->
init_fn
(
dev
,
priv
->
board
,
0
);
pci_disable_device
(
dev
);
...
...
drivers/serial/core.c
View file @
7c05bbf9
...
...
@@ -1604,8 +1604,6 @@ static int uart_open(struct tty_struct *tty, struct file *filp)
return
retval
;
}
#ifdef CONFIG_PROC_FS
static
const
char
*
uart_type
(
struct
uart_port
*
port
)
{
const
char
*
str
=
NULL
;
...
...
@@ -1619,6 +1617,8 @@ static const char *uart_type(struct uart_port *port)
return
str
;
}
#ifdef CONFIG_PROC_FS
static
int
uart_line_info
(
char
*
buf
,
struct
uart_driver
*
drv
,
int
i
)
{
struct
uart_state
*
state
=
drv
->
state
+
i
;
...
...
include/linux/serialP.h
View file @
7c05bbf9
...
...
@@ -131,6 +131,9 @@ struct rs_multiport_struct {
* Digital did something really horribly wrong with the OUT1 and OUT2
* lines on at least some ALPHA's. The failure mode is that if either
* is cleared, the machine locks up with endless interrupts.
*
* This is still used by arch/mips/au1000/common/serial.c for some weird
* reason (mips != alpha!)
*/
#define ALPHA_KLUDGE_MCR (UART_MCR_OUT2 | UART_MCR_OUT1)
#else
...
...
@@ -138,29 +141,8 @@ struct rs_multiport_struct {
#endif
/*
*
Structures and definitions for PCI support
*
Definitions for PCI support.
*/
struct
pci_dev
;
struct
pci_board
{
int
flags
;
int
num_ports
;
int
base_baud
;
int
uart_offset
;
int
reg_shift
;
int
(
*
init_fn
)(
struct
pci_dev
*
dev
,
struct
pci_board
*
board
,
int
enable
);
int
first_uart_offset
;
};
struct
pci_board_inst
{
struct
pci_board
board
;
struct
pci_dev
*
dev
;
};
#ifndef PCI_ANY_ID
#define PCI_ANY_ID (~0)
#endif
#define SPCI_FL_BASE_MASK 0x0007
#define SPCI_FL_BASE0 0x0000
#define SPCI_FL_BASE1 0x0001
...
...
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