From: James S. <jsi...@us...> - 2002-03-15 18:28:14
|
Update of /cvsroot/linuxconsole/ruby/linux/arch/i386/kernel In directory usw-pr-cvs1:/tmp/cvs-serv4512/linux/arch/i386/kernel Added Files: apm.c Log Message: Alots of fixes across many platforms. --- NEW FILE: apm.c --- /* -*- linux-c -*- * APM BIOS driver for Linux * Copyright 1994-2001 Stephen Rothwell (sf...@ca...) * * Initial development of this driver was funded by NEC Australia P/L * and NEC Corporation * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2, or (at your option) any * later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * October 1995, Rik Faith (fa...@cs...): * Minor enhancements and updates (to the patch set) for 1.3.x [...1994 lines suppressed...] MODULE_PARM(power_off, "i"); MODULE_PARM_DESC(power_off, "Enable power off"); MODULE_PARM(bounce_interval, "i"); MODULE_PARM_DESC(bounce_interval, "Set the number of ticks to ignore suspend bounces"); MODULE_PARM(allow_ints, "i"); MODULE_PARM_DESC(allow_ints, "Allow interrupts during BIOS calls"); MODULE_PARM(broken_psr, "i"); MODULE_PARM_DESC(broken_psr, "BIOS has a broken GetPowerStatus call"); MODULE_PARM(realmode_power_off, "i"); MODULE_PARM_DESC(realmode_power_off, "Switch to real mode before powering off"); MODULE_PARM(idle_threshold, "i"); MODULE_PARM_DESC(idle_threshold, "System idle percentage above which to make APM BIOS idle calls"); MODULE_PARM(idle_period, "i"); MODULE_PARM_DESC(idle_period, "Period (in sec/100) over which to caculate the idle percentage"); EXPORT_NO_SYMBOLS; |