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
9bc35de1
Commit
9bc35de1
authored
Jun 04, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://kernel.bkbits.net/davem/sparc-2.5
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
a986b2f2
f1e2415a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
5 deletions
+8
-5
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/serial/sunsab.c
drivers/serial/sunsab.c
+3
-0
No files found.
arch/sparc/prom/console.c
View file @
9bc35de1
...
@@ -105,7 +105,7 @@ prom_putchar(char c)
...
@@ -105,7 +105,7 @@ prom_putchar(char c)
/* Query for input device type */
/* Query for input device type */
enum
prom_input_device
enum
prom_input_device
prom_query_input_device
()
prom_query_input_device
(
void
)
{
{
unsigned
long
flags
;
unsigned
long
flags
;
int
st_p
;
int
st_p
;
...
@@ -155,7 +155,7 @@ prom_query_input_device()
...
@@ -155,7 +155,7 @@ prom_query_input_device()
/* Query for output device type */
/* Query for output device type */
enum
prom_output_device
enum
prom_output_device
prom_query_output_device
()
prom_query_output_device
(
void
)
{
{
unsigned
long
flags
;
unsigned
long
flags
;
int
st_p
;
int
st_p
;
...
...
arch/sparc64/boot/Makefile
View file @
9bc35de1
...
@@ -15,7 +15,7 @@ quiet_cmd_elftoaout = ELT2AOUT $@
...
@@ -15,7 +15,7 @@ quiet_cmd_elftoaout = ELT2AOUT $@
quiet_cmd_piggy
=
PIGGY
$@
quiet_cmd_piggy
=
PIGGY
$@
cmd_piggy
=
$(obj)
/piggyback
$@
System.map
$(ROOT_IMG)
cmd_piggy
=
$(obj)
/piggyback
$@
System.map
$(ROOT_IMG)
quiet_cmd_strip
=
STRIP
$@
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
# Actual linking
...
...
arch/sparc64/prom/console.c
View file @
9bc35de1
...
@@ -76,7 +76,7 @@ prom_puts(char *s, int len)
...
@@ -76,7 +76,7 @@ prom_puts(char *s, int len)
/* Query for input device type */
/* Query for input device type */
enum
prom_input_device
enum
prom_input_device
prom_query_input_device
()
prom_query_input_device
(
void
)
{
{
int
st_p
;
int
st_p
;
char
propb
[
64
];
char
propb
[
64
];
...
@@ -111,7 +111,7 @@ prom_query_input_device()
...
@@ -111,7 +111,7 @@ prom_query_input_device()
/* Query for output device type */
/* Query for output device type */
enum
prom_output_device
enum
prom_output_device
prom_query_output_device
()
prom_query_output_device
(
void
)
{
{
int
st_p
;
int
st_p
;
char
propb
[
64
];
char
propb
[
64
];
...
...
drivers/serial/sunsab.c
View file @
9bc35de1
...
@@ -231,8 +231,10 @@ static void transmit_chars(struct uart_sunsab_port *up,
...
@@ -231,8 +231,10 @@ static void transmit_chars(struct uart_sunsab_port *up,
set_bit
(
SAB82532_ALLS
,
&
up
->
irqflags
);
set_bit
(
SAB82532_ALLS
,
&
up
->
irqflags
);
}
}
#if 0 /* bde@nwlink.com says this check causes problems */
if (!(stat->sreg.isr1 & SAB82532_ISR1_XPR))
if (!(stat->sreg.isr1 & SAB82532_ISR1_XPR))
return;
return;
#endif
if
(
!
(
readb
(
&
up
->
regs
->
r
.
star
)
&
SAB82532_STAR_XFW
))
if
(
!
(
readb
(
&
up
->
regs
->
r
.
star
)
&
SAB82532_STAR_XFW
))
return
;
return
;
...
@@ -242,6 +244,7 @@ static void transmit_chars(struct uart_sunsab_port *up,
...
@@ -242,6 +244,7 @@ static void transmit_chars(struct uart_sunsab_port *up,
if
(
uart_circ_empty
(
xmit
)
||
uart_tx_stopped
(
&
up
->
port
))
{
if
(
uart_circ_empty
(
xmit
)
||
uart_tx_stopped
(
&
up
->
port
))
{
up
->
interrupt_mask1
|=
SAB82532_IMR1_XPR
;
up
->
interrupt_mask1
|=
SAB82532_IMR1_XPR
;
writeb
(
up
->
interrupt_mask1
,
&
up
->
regs
->
w
.
imr1
);
writeb
(
up
->
interrupt_mask1
,
&
up
->
regs
->
w
.
imr1
);
uart_write_wakeup
(
&
up
->
port
);
return
;
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