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
8d335aba
Commit
8d335aba
authored
Aug 14, 2002
by
Andy Grover
Committed by
Andy Grover
Aug 14, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change acpi_system_suspend to use new irq functions (Pavel Machek)
parent
8370231b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
drivers/acpi/system.c
drivers/acpi/system.c
+3
-2
No files found.
drivers/acpi/system.c
View file @
8d335aba
...
...
@@ -256,7 +256,8 @@ acpi_system_suspend(
acpi_status
status
=
AE_ERROR
;
unsigned
long
flags
=
0
;
save_flags
(
flags
);
local_irq_save
(
flags
);
local_irq_disable
();
switch
(
state
)
{
...
...
@@ -270,7 +271,7 @@ acpi_system_suspend(
do_suspend_lowlevel
(
0
);
break
;
}
restore_flags
(
flags
);
local_irq_restore
(
flags
);
return
status
;
}
...
...
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