Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
f7a5274d
Commit
f7a5274d
authored
Dec 06, 2007
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Pull suspend-2.6.24 into release branch
parents
ceaeee6a
74d0f333
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
8 deletions
+3
-8
arch/x86/kernel/acpi/wakeup_32.S
arch/x86/kernel/acpi/wakeup_32.S
+0
-4
drivers/hwmon/coretemp.c
drivers/hwmon/coretemp.c
+2
-3
fs/jffs2/background.c
fs/jffs2/background.c
+1
-1
No files found.
arch/x86/kernel/acpi/wakeup_32.S
View file @
f7a5274d
...
...
@@ -35,10 +35,6 @@ wakeup_code:
wakeup_code_start
=
.
.
code16
movw
$
0xb800
,
%
ax
movw
%
ax
,%
fs
movw
$
0x0e00
+
'L'
,
%
fs
:
(
0x10
)
cli
cld
...
...
drivers/hwmon/coretemp.c
View file @
f7a5274d
...
...
@@ -337,11 +337,10 @@ static int coretemp_cpu_callback(struct notifier_block *nfb,
switch
(
action
)
{
case
CPU_ONLINE
:
case
CPU_
ONLINE_FROZEN
:
case
CPU_
DOWN_FAILED
:
coretemp_device_add
(
cpu
);
break
;
case
CPU_DEAD
:
case
CPU_DEAD_FROZEN
:
case
CPU_DOWN_PREPARE
:
coretemp_device_remove
(
cpu
);
break
;
}
...
...
fs/jffs2/background.c
View file @
f7a5274d
...
...
@@ -105,7 +105,7 @@ static int jffs2_garbage_collect_thread(void *_c)
/* Put_super will send a SIGKILL and then wait on the sem.
*/
while
(
signal_pending
(
current
))
{
while
(
signal_pending
(
current
)
||
freezing
(
current
)
)
{
siginfo_t
info
;
unsigned
long
signr
;
...
...
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