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
cbef6c0f
Commit
cbef6c0f
authored
Jun 04, 2003
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Plain Diff
Merge kroah.com:/home/greg/linux/BK/bleed-2.5
into kroah.com:/home/greg/linux/BK/pci-2.5
parents
c8feeced
ebb11c7e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
6 deletions
+9
-6
arch/sparc/prom/console.c
arch/sparc/prom/console.c
+2
-2
arch/sparc64/boot/Makefile
arch/sparc64/boot/Makefile
+1
-1
arch/sparc64/prom/console.c
arch/sparc64/prom/console.c
+2
-2
drivers/base/class.c
drivers/base/class.c
+1
-1
drivers/serial/sunsab.c
drivers/serial/sunsab.c
+3
-0
No files found.
arch/sparc/prom/console.c
View file @
cbef6c0f
...
...
@@ -105,7 +105,7 @@ prom_putchar(char c)
/* Query for input device type */
enum
prom_input_device
prom_query_input_device
()
prom_query_input_device
(
void
)
{
unsigned
long
flags
;
int
st_p
;
...
...
@@ -155,7 +155,7 @@ prom_query_input_device()
/* Query for output device type */
enum
prom_output_device
prom_query_output_device
()
prom_query_output_device
(
void
)
{
unsigned
long
flags
;
int
st_p
;
...
...
arch/sparc64/boot/Makefile
View file @
cbef6c0f
...
...
@@ -15,7 +15,7 @@ quiet_cmd_elftoaout = ELT2AOUT $@
quiet_cmd_piggy
=
PIGGY
$@
cmd_piggy
=
$(obj)
/piggyback
$@
System.map
$(ROOT_IMG)
quiet_cmd_strip
=
STRIP
$@
cmd_strip
=
$(STRIP)
-R
.comment
-R
.note vmlinux
-o
$@
cmd_strip
=
$(STRIP)
-R
.comment
-R
.note
-K
sun4u_init
-K
_end
-K
_start
vmlinux
-o
$@
# Actual linking
...
...
arch/sparc64/prom/console.c
View file @
cbef6c0f
...
...
@@ -76,7 +76,7 @@ prom_puts(char *s, int len)
/* Query for input device type */
enum
prom_input_device
prom_query_input_device
()
prom_query_input_device
(
void
)
{
int
st_p
;
char
propb
[
64
];
...
...
@@ -111,7 +111,7 @@ prom_query_input_device()
/* Query for output device type */
enum
prom_output_device
prom_query_output_device
()
prom_query_output_device
(
void
)
{
int
st_p
;
char
propb
[
64
];
...
...
drivers/base/class.c
View file @
cbef6c0f
...
...
@@ -191,7 +191,7 @@ static void class_dev_release(struct kobject * kobj)
pr_debug
(
"device class '%s': release.
\n
"
,
cd
->
class_id
);
if
(
cls
->
release
)
c
d
->
release
(
cd
);
c
ls
->
release
(
cd
);
}
static
struct
kobj_type
ktype_class_device
=
{
...
...
drivers/serial/sunsab.c
View file @
cbef6c0f
...
...
@@ -231,8 +231,10 @@ static void transmit_chars(struct uart_sunsab_port *up,
set_bit
(
SAB82532_ALLS
,
&
up
->
irqflags
);
}
#if 0 /* bde@nwlink.com says this check causes problems */
if (!(stat->sreg.isr1 & SAB82532_ISR1_XPR))
return;
#endif
if
(
!
(
readb
(
&
up
->
regs
->
r
.
star
)
&
SAB82532_STAR_XFW
))
return
;
...
...
@@ -242,6 +244,7 @@ static void transmit_chars(struct uart_sunsab_port *up,
if
(
uart_circ_empty
(
xmit
)
||
uart_tx_stopped
(
&
up
->
port
))
{
up
->
interrupt_mask1
|=
SAB82532_IMR1_XPR
;
writeb
(
up
->
interrupt_mask1
,
&
up
->
regs
->
w
.
imr1
);
uart_write_wakeup
(
&
up
->
port
);
return
;
}
...
...
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