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
02d5bccf
Commit
02d5bccf
authored
Jan 11, 2008
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Pull bugzilla-9194 into release branch
parents
eba6860a
9f9adecd
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
22 deletions
+17
-22
arch/x86/kernel/apm_32.c
arch/x86/kernel/apm_32.c
+3
-7
drivers/acpi/bus.c
drivers/acpi/bus.c
+2
-5
include/linux/pm.h
include/linux/pm.h
+9
-0
include/linux/pm_legacy.h
include/linux/pm_legacy.h
+0
-6
kernel/power/main.c
kernel/power/main.c
+3
-0
kernel/power/pm.c
kernel/power/pm.c
+0
-4
No files found.
arch/x86/kernel/apm_32.c
View file @
02d5bccf
...
...
@@ -2256,14 +2256,12 @@ static int __init apm_init(void)
apm_info
.
disabled
=
1
;
return
-
ENODEV
;
}
if
(
PM_IS_ACTIVE
()
)
{
if
(
pm_flags
&
PM_ACPI
)
{
printk
(
KERN_NOTICE
"apm: overridden by ACPI.
\n
"
);
apm_info
.
disabled
=
1
;
return
-
ENODEV
;
}
#ifdef CONFIG_PM_LEGACY
pm_active
=
1
;
#endif
pm_flags
|=
PM_APM
;
/*
* Set up a segment that references the real mode segment 0x40
...
...
@@ -2366,9 +2364,7 @@ static void __exit apm_exit(void)
kthread_stop
(
kapmd_task
);
kapmd_task
=
NULL
;
}
#ifdef CONFIG_PM_LEGACY
pm_active
=
0
;
#endif
pm_flags
&=
~
PM_APM
;
}
module_init
(
apm_init
);
...
...
drivers/acpi/bus.c
View file @
02d5bccf
...
...
@@ -29,7 +29,6 @@
#include <linux/list.h>
#include <linux/sched.h>
#include <linux/pm.h>
#include <linux/pm_legacy.h>
#include <linux/device.h>
#include <linux/proc_fs.h>
#ifdef CONFIG_X86
...
...
@@ -764,16 +763,14 @@ static int __init acpi_init(void)
result
=
acpi_bus_init
();
if
(
!
result
)
{
#ifdef CONFIG_PM_LEGACY
if
(
!
PM_IS_ACTIVE
())
pm_active
=
1
;
if
(
!
(
pm_flags
&
PM_APM
))
pm_flags
|=
PM_ACPI
;
else
{
printk
(
KERN_INFO
PREFIX
"APM is already active, exiting
\n
"
);
disable_acpi
();
result
=
-
ENODEV
;
}
#endif
}
else
disable_acpi
();
...
...
include/linux/pm.h
View file @
02d5bccf
...
...
@@ -246,6 +246,15 @@ static inline int call_platform_enable_wakeup(struct device *dev, int is_on)
device_set_wakeup_enable(dev,val); \
} while(0)
/*
* Global Power Management flags
* Used to keep APM and ACPI from both being active
*/
extern
unsigned
int
pm_flags
;
#define PM_APM 1
#define PM_ACPI 2
#endif
/* __KERNEL__ */
#endif
/* _LINUX_PM_H */
include/linux/pm_legacy.h
View file @
02d5bccf
...
...
@@ -4,10 +4,6 @@
#ifdef CONFIG_PM_LEGACY
extern
int
pm_active
;
#define PM_IS_ACTIVE() (pm_active != 0)
/*
* Register a device with power management
*/
...
...
@@ -21,8 +17,6 @@ int __deprecated pm_send_all(pm_request_t rqst, void *data);
#else
/* CONFIG_PM_LEGACY */
#define PM_IS_ACTIVE() 0
static
inline
struct
pm_dev
*
pm_register
(
pm_dev_t
type
,
unsigned
long
id
,
pm_callback
callback
)
...
...
kernel/power/main.c
View file @
02d5bccf
...
...
@@ -28,6 +28,9 @@ BLOCKING_NOTIFIER_HEAD(pm_chain_head);
DEFINE_MUTEX
(
pm_mutex
);
unsigned
int
pm_flags
;
EXPORT_SYMBOL
(
pm_flags
);
#ifdef CONFIG_SUSPEND
/* This is just an arbitrary number */
...
...
kernel/power/pm.c
View file @
02d5bccf
...
...
@@ -27,8 +27,6 @@
#include <linux/interrupt.h>
#include <linux/mutex.h>
int
pm_active
;
/*
* Locking notes:
* pm_devs_lock can be a semaphore providing pm ops are not called
...
...
@@ -204,6 +202,4 @@ int pm_send_all(pm_request_t rqst, void *data)
EXPORT_SYMBOL
(
pm_register
);
EXPORT_SYMBOL
(
pm_send_all
);
EXPORT_SYMBOL
(
pm_active
);
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