From: Ishan Oshadi Jayawardena <ioshadi@sltnet.lk>
To: sfr@canb.auug.org.au, lkml <linux-kernel@vger.kernel.org>
Subject: [PATCH] A slightly smarter dmi_scan.c
Date: Mon, 24 Dec 2001 23:23:39 -0600 [thread overview]
Message-ID: <3C280D5B.274EC187@sltnet.lk> (raw)
[-- Attachment #1: Type: text/plain, Size: 363 bytes --]
> APM can also be compiled as a module.
Right. Thanks. I blatantly ignored that APM can be built as modules ;(
The fixed patch is here.
Cheerio !
- ioj
~~~~
Ask not of race, but ask of conduct:
From the stick is born the sacred fire:
The wise ascetic, though lowly born,
Is noble in his modest self-control.
- Gotama Buddha
.
[-- Attachment #2: dmi.patch --]
[-- Type: text/plain, Size: 1982 bytes --]
--- linux/arch/i386/kernel/dmi_scan.c Mon Dec 24 22:50:41 2001
+++ linux/arch/i386/kernel/dmi_scan.c.c Mon Dec 24 22:53:21 2001
@@ -255,26 +255,29 @@
static __init int set_realmode_power_off(struct dmi_blacklist *d)
{
+#if defined (CONFIG_APM) || defined (CONFIG_APM_MODULE)
if (apm_info.realmode_power_off == 0)
{
apm_info.realmode_power_off = 1;
printk(KERN_INFO "%s bios detected. Using realmode poweroff only.\n", d->ident);
}
+#endif
return 0;
}
-
/*
* Some laptops require interrupts to be enabled during APM calls
*/
static __init int set_apm_ints(struct dmi_blacklist *d)
{
+#if defined (CONFIG_APM) || defined (CONFIG_APM_MODULE)
if (apm_info.allow_ints == 0)
{
apm_info.allow_ints = 1;
printk(KERN_INFO "%s machine detected. Enabling interrupts during APM calls.\n", d->ident);
}
+#endif
return 0;
}
@@ -284,15 +287,16 @@
static __init int apm_is_horked(struct dmi_blacklist *d)
{
+#if defined (CONFIG_APM) || defined (CONFIG_APM_MODULE)
if (apm_info.disabled == 0)
{
apm_info.disabled = 1;
printk(KERN_INFO "%s machine detected. Disabling APM.\n", d->ident);
}
+#endif
return 0;
}
-
/*
* Check for clue free BIOS implementations who use
* the following QA technique
@@ -311,10 +315,12 @@
static __init int broken_apm_power(struct dmi_blacklist *d)
{
+#if defined (CONFIG_APM) || defined (CONFIG_APM_MODULE)
apm_info.get_power_status_broken = 1;
printk(KERN_WARNING "BIOS strings suggest APM bugs, disabling power status reporting.\n");
+#endif
return 0;
-}
+}
/*
* Check for a Sony Vaio system
@@ -341,8 +347,10 @@
static __init int swab_apm_power_in_minutes(struct dmi_blacklist *d)
{
+#if defined (CONFIG_APM) || defined (CONFIG_APM_MODULE)
apm_info.get_power_status_swabinminutes = 1;
printk(KERN_WARNING "BIOS strings suggest APM reports battery life in minutes and wrong byte order.\n");
+#endif
return 0;
}
next reply other threads:[~2001-12-24 17:18 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-12-25 5:23 Ishan Oshadi Jayawardena [this message]
2001-12-24 18:17 ` [PATCH] A slightly smarter dmi_scan.c Alan Cox
-- strict thread matches above, loose matches on Subject: below --
2001-12-26 16:25 Alvin of Diaspar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3C280D5B.274EC187@sltnet.lk \
--to=ioshadi@sltnet.lk \
--cc=linux-kernel@vger.kernel.org \
--cc=sfr@canb.auug.org.au \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.