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
7b152f4f
Commit
7b152f4f
authored
Sep 07, 2003
by
Patrick Mochel
Browse files
Options
Browse Files
Download
Plain Diff
Merge osdl.org:/home/mochel/src/kernel/linux-2.5-virgin
into osdl.org:/home/mochel/src/kernel/linux-2.5-power
parents
b3b19911
abe68253
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
59 additions
and
37 deletions
+59
-37
Makefile
Makefile
+1
-1
drivers/block/noop-iosched.c
drivers/block/noop-iosched.c
+3
-1
drivers/net/wan/sdla.c
drivers/net/wan/sdla.c
+1
-1
drivers/serial/sa1100.c
drivers/serial/sa1100.c
+54
-34
No files found.
Makefile
View file @
7b152f4f
VERSION
=
2
PATCHLEVEL
=
6
SUBLEVEL
=
0
EXTRAVERSION
=
-test
4
EXTRAVERSION
=
-test
5
# *DOCUMENTATION*
# To see a list of typical targets execute "make help"
...
...
drivers/block/noop-iosched.c
View file @
7b152f4f
...
...
@@ -24,8 +24,10 @@ int elevator_noop_merge(request_queue_t *q, struct request **req,
struct
request
*
__rq
;
int
ret
;
if
((
ret
=
elv_try_last_merge
(
q
,
bio
)))
if
((
ret
=
elv_try_last_merge
(
q
,
bio
)))
{
*
req
=
q
->
last_merge
;
return
ret
;
}
while
((
entry
=
entry
->
prev
)
!=
&
q
->
queue_head
)
{
__rq
=
list_entry_rq
(
entry
);
...
...
drivers/net/wan/sdla.c
View file @
7b152f4f
...
...
@@ -1719,9 +1719,9 @@ static void __exit exit_sdla(void)
unregister_frad
(
devname
);
}
#endif
MODULE_LICENSE
(
"GPL"
);
module_init
(
init_sdla
);
module_exit
(
exit_sdla
);
#endif
drivers/serial/sa1100.c
View file @
7b152f4f
...
...
@@ -398,7 +398,7 @@ static int sa1100_startup(struct uart_port *port)
* Allocate the IRQ
*/
retval
=
request_irq
(
sport
->
port
.
irq
,
sa1100_int
,
0
,
"s
erial_sa1100
"
,
sport
);
"s
a11x0-uart
"
,
sport
);
if
(
retval
)
return
retval
;
...
...
@@ -568,7 +568,7 @@ static int sa1100_request_port(struct uart_port *port)
struct
sa1100_port
*
sport
=
(
struct
sa1100_port
*
)
port
;
return
request_mem_region
(
sport
->
port
.
mapbase
,
UART_PORT_SIZE
,
"s
erial_sa1100
"
)
!=
NULL
?
0
:
-
EBUSY
;
"s
a11x0-uart
"
)
!=
NULL
?
0
:
-
EBUSY
;
}
/*
...
...
@@ -858,71 +858,91 @@ static struct uart_driver sa1100_reg = {
.
cons
=
SA1100_CONSOLE
,
};
static
int
sa1100_serial_suspend
(
struct
device
*
dev
,
u32
state
,
u32
level
)
static
int
sa1100_serial_suspend
(
struct
device
*
_
dev
,
u32
state
,
u32
level
)
{
int
i
;
struct
sa1100_port
*
sport
=
dev_get_drvdata
(
_dev
);
if
(
sport
)
uart_suspend_port
(
&
sa1100_reg
,
&
sport
->
port
,
level
);
return
0
;
}
static
int
sa1100_serial_resume
(
struct
device
*
_dev
,
u32
level
)
{
struct
sa1100_port
*
sport
=
dev_get_drvdata
(
_dev
);
for
(
i
=
0
;
i
<
NR_PORTS
;
i
++
)
uart_
suspend_port
(
&
sa1100_reg
,
&
sa1100_ports
[
i
].
port
,
level
);
if
(
sport
)
uart_
resume_port
(
&
sa1100_reg
,
&
sport
->
port
,
level
);
return
0
;
}
static
int
sa1100_serial_
resume
(
struct
device
*
dev
,
u32
level
)
static
int
sa1100_serial_
probe
(
struct
device
*
_dev
)
{
struct
platform_device
*
dev
=
to_platform_device
(
_dev
);
struct
resource
*
res
=
dev
->
resource
;
int
i
;
for
(
i
=
0
;
i
<
NR_PORTS
;
i
++
)
uart_resume_port
(
&
sa1100_reg
,
&
sa1100_ports
[
i
].
port
,
level
);
for
(
i
=
0
;
i
<
dev
->
num_resources
;
i
++
,
res
++
)
if
(
res
->
flags
&
IORESOURCE_MEM
)
break
;
if
(
i
<
dev
->
num_resources
)
{
for
(
i
=
0
;
i
<
NR_PORTS
;
i
++
)
{
if
(
sa1100_ports
[
i
].
port
.
mapbase
!=
res
->
start
)
continue
;
uart_add_one_port
(
&
sa1100_reg
,
&
sa1100_ports
[
i
].
port
);
dev_set_drvdata
(
_dev
,
&
sa1100_ports
[
i
]);
break
;
}
}
return
0
;
}
static
int
sa1100_serial_remove
(
struct
device
*
_dev
)
{
struct
sa1100_port
*
sport
=
dev_get_drvdata
(
_dev
);
dev_set_drvdata
(
_dev
,
NULL
);
if
(
sport
)
uart_remove_one_port
(
&
sa1100_reg
,
&
sport
->
port
);
return
0
;
}
static
struct
device_driver
sa11x0_serial_driver
=
{
.
name
=
"sa11x0_serial"
,
.
bus
=
&
system_bus_type
,
.
name
=
"sa11x0-uart"
,
.
bus
=
&
platform_bus_type
,
.
probe
=
sa1100_serial_probe
,
.
remove
=
sa1100_serial_remove
,
.
suspend
=
sa1100_serial_suspend
,
.
resume
=
sa1100_serial_resume
,
};
/*
* This "device" covers _all_ ISA 8250-compatible serial devices.
*/
static
struct
sys_device
sa11x0_serial_devs
=
{
.
name
=
"sa11x0_serial"
,
.
id
=
0
,
.
dev
=
{
.
driver
=
&
sa11x0_serial_driver
,
},
};
static
int
__init
sa1100_serial_init
(
void
)
{
int
ret
;
printk
(
KERN_INFO
"Serial: SA11x0 driver $Revision: 1.50 $
\n
"
);
driver_register
(
&
sa11x0_serial_driver
);
sys_device_register
(
&
sa11x0_serial_devs
);
sa1100_init_ports
();
ret
=
uart_register_driver
(
&
sa1100_reg
);
if
(
ret
==
0
)
{
int
i
;
for
(
i
=
0
;
i
<
NR_PORTS
;
i
++
)
uart_add_one_port
(
&
sa1100_reg
,
&
sa1100_ports
[
i
].
port
);
ret
=
driver_register
(
&
sa11x0_serial_driver
);
if
(
ret
)
uart_unregister_driver
(
&
sa1100_reg
);
}
return
ret
;
}
static
void
__exit
sa1100_serial_exit
(
void
)
{
int
i
;
for
(
i
=
0
;
i
<
NR_PORTS
;
i
++
)
uart_remove_one_port
(
&
sa1100_reg
,
&
sa1100_ports
[
i
].
port
);
driver_unregister
(
&
sa11x0_serial_driver
);
uart_unregister_driver
(
&
sa1100_reg
);
}
...
...
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