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
77158a9d
Commit
77158a9d
authored
Dec 27, 2002
by
Geert Uytterhoeven
Committed by
Linus Torvalds
Dec 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] MVME147 core local_irq*() updates
Convert core MVME147 code to new local_irq*() framework
parent
eb0ea8b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
arch/m68k/mvme147/config.c
arch/m68k/mvme147/config.c
+3
-4
No files found.
arch/m68k/mvme147/config.c
View file @
77158a9d
...
...
@@ -209,10 +209,9 @@ static void scc_write (char ch)
void
m147_scc_write
(
struct
console
*
co
,
const
char
*
str
,
unsigned
count
)
{
unsigned
long
flags
;
unsigned
long
flags
;
save_flags
(
flags
);
cli
();
local_irq_save
(
flags
);
while
(
count
--
)
{
...
...
@@ -220,7 +219,7 @@ void m147_scc_write (struct console *co, const char *str, unsigned count)
scc_write
(
'\r'
);
scc_write
(
*
str
++
);
}
restore_flags
(
flags
);
local_irq_restore
(
flags
);
}
void
mvme147_init_console_port
(
struct
console
*
co
,
int
cflag
)
...
...
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