diff options
author | Andres Salomon <dilinger@debian.org> | 2008-09-14 17:11:15 -0400 |
---|---|---|
committer | Andres Salomon <dilinger@debian.org> | 2008-09-14 17:11:15 -0400 |
commit | d709b84106a3d7877730b1366a3fd8b46aceb093 (patch) | |
tree | e25441ddc3bd2472fb8f961e2efd158a11a11916 | |
parent | c74972710521f72119c839e34af602389b62da49 (diff) | |
download | lwn-d709b84106a3d7877730b1366a3fd8b46aceb093.tar.gz lwn-d709b84106a3d7877730b1366a3fd8b46aceb093.zip |
OLPC: don't allow olpc-pm to be built as a module
The RTC code that was tacked in there defines an arch_initcall;
meanwhile, the code also has a module_init function that conflicts w/
the RTC initcall. The RTC code should probably be separated or..
something. For now, just don't allow modular building of olpc-pm.
Signed-off-by: Andres Salomon <dilinger@debian.org>
-rw-r--r-- | arch/x86/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index b328da41e2b7..d729e1450ac0 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -1573,7 +1573,7 @@ config OLPC Childrens Machine config OLPC_PM - tristate "OLPC power management support" + bool "OLPC power management support" default y depends on OLPC help |