summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1994-10-02 17:41:44 +0000
committerphk <phk@FreeBSD.org>1994-10-02 17:41:44 +0000
commit451659421c6fd9cc8d83d27e51ae1ba317522182 (patch)
treefdcc62424cc2f172f87fd4e2fe43451933e84d54 /sys
parentebec1c5416a39900b6567ecb4b8561999bea6719 (diff)
downloadFreeBSD-src-451659421c6fd9cc8d83d27e51ae1ba317522182.zip
FreeBSD-src-451659421c6fd9cc8d83d27e51ae1ba317522182.tar.gz
Ripped out APM-hooks. Not ready for prime time yet.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/syscons/syscons.c23
-rw-r--r--sys/i386/isa/syscons.c23
-rw-r--r--sys/i386/isa/wd.c22
-rw-r--r--sys/isa/syscons.c23
4 files changed, 4 insertions, 87 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c
index 92ce827..6bdf180 100644
--- a/sys/dev/syscons/syscons.c
+++ b/sys/dev/syscons/syscons.c
@@ -35,7 +35,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: syscons.c,v 1.61 1994/10/01 02:56:19 davidg Exp $
+ * $Id: syscons.c,v 1.62 1994/10/02 14:08:57 ache Exp $
*/
#include "sc.h"
@@ -64,9 +64,6 @@
#include <i386/isa/timerreg.h>
#include <i386/isa/kbdtables.h>
#include <i386/i386/cons.h>
-#ifdef APM
-#include <machine/apm_bios.h>
-#endif
#if !defined(NCONS)
#define NCONS 12
@@ -291,16 +288,6 @@ struct isa_driver scdriver = {
pcprobe, pcattach, "sc",
};
-#ifdef APM
-static int
-pc_resume(void)
-{
- /* when the system wakes up, modifier keys must be re-initialized */
- shfts = ctls = alts = agrs = metas = 0;
- return 0;
-}
-#endif /* APM */
-
int
pcprobe(struct isa_device *dev)
{
@@ -399,9 +386,6 @@ pcattach(struct isa_device *dev)
/* get cursor going */
cursor_pos(1);
update_leds(console[0].status);
-#ifdef APM
- apm_resume_hook_init(pc_resume, "Syscons console", APM_MID_ORDER);
-#endif
return 0;
}
@@ -1470,8 +1454,6 @@ switch_scr(u_int next_scr)
static void
exchange_scr(void)
{
- struct tty *tp;
-
bcopy(Crtat, old_scp->scr_buf, old_scp->xsize * old_scp->ysize * 2);
old_scp->crt_base = old_scp->scr_buf;
move_crsr(old_scp, old_scp->xpos, old_scp->ypos);
@@ -2446,9 +2428,6 @@ next_code:
shutdown_nice();
break;
case SUSP:
-#ifdef APM
- apm_suspend_resume();
-#endif /* APM */
break;
case DBG:
diff --git a/sys/i386/isa/syscons.c b/sys/i386/isa/syscons.c
index 92ce827..6bdf180 100644
--- a/sys/i386/isa/syscons.c
+++ b/sys/i386/isa/syscons.c
@@ -35,7 +35,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: syscons.c,v 1.61 1994/10/01 02:56:19 davidg Exp $
+ * $Id: syscons.c,v 1.62 1994/10/02 14:08:57 ache Exp $
*/
#include "sc.h"
@@ -64,9 +64,6 @@
#include <i386/isa/timerreg.h>
#include <i386/isa/kbdtables.h>
#include <i386/i386/cons.h>
-#ifdef APM
-#include <machine/apm_bios.h>
-#endif
#if !defined(NCONS)
#define NCONS 12
@@ -291,16 +288,6 @@ struct isa_driver scdriver = {
pcprobe, pcattach, "sc",
};
-#ifdef APM
-static int
-pc_resume(void)
-{
- /* when the system wakes up, modifier keys must be re-initialized */
- shfts = ctls = alts = agrs = metas = 0;
- return 0;
-}
-#endif /* APM */
-
int
pcprobe(struct isa_device *dev)
{
@@ -399,9 +386,6 @@ pcattach(struct isa_device *dev)
/* get cursor going */
cursor_pos(1);
update_leds(console[0].status);
-#ifdef APM
- apm_resume_hook_init(pc_resume, "Syscons console", APM_MID_ORDER);
-#endif
return 0;
}
@@ -1470,8 +1454,6 @@ switch_scr(u_int next_scr)
static void
exchange_scr(void)
{
- struct tty *tp;
-
bcopy(Crtat, old_scp->scr_buf, old_scp->xsize * old_scp->ysize * 2);
old_scp->crt_base = old_scp->scr_buf;
move_crsr(old_scp, old_scp->xpos, old_scp->ypos);
@@ -2446,9 +2428,6 @@ next_code:
shutdown_nice();
break;
case SUSP:
-#ifdef APM
- apm_suspend_resume();
-#endif /* APM */
break;
case DBG:
diff --git a/sys/i386/isa/wd.c b/sys/i386/isa/wd.c
index c8b92ce..a5e68ee 100644
--- a/sys/i386/isa/wd.c
+++ b/sys/i386/isa/wd.c
@@ -37,7 +37,7 @@ static int wdtest = 0;
* SUCH DAMAGE.
*
* from: @(#)wd.c 7.2 (Berkeley) 5/9/91
- * $Id: wd.c,v 1.46 1994/09/10 03:19:49 davidg Exp $
+ * $Id: wd.c,v 1.47 1994/10/01 02:56:21 davidg Exp $
*/
/* TODO:
@@ -164,9 +164,6 @@ static struct buf wdutab[NWD]; /* head of queue per drive */
static struct buf rwdbuf[NWD]; /* buffers for raw IO */
#endif
static long wdxfer[NWD]; /* count of transfers */
-#ifdef APM
-static int wdsuspend_regist = 0;
-#endif /* APM */
static void bad144intern(struct disk *);
@@ -187,9 +184,6 @@ static void wdsleep(int ctrlr, char *wmesg);
static timeout_t wdtimeout;
static int wdunwedge(struct disk *du);
static int wdwait(struct disk *du, u_char bits_wanted, int timeout);
-#ifdef APM
-static int wdsuspend(void);
-#endif /* APM */
struct isa_driver wdcdriver = {
wdprobe, wdattach, "wdc",
@@ -346,11 +340,6 @@ wdattach(struct isa_device *dvp)
* doesn't work now because the ambient ipl is too high.
*/
wdtab[dvp->id_unit].b_active = 2;
-#ifdef APM
- if (!wdsuspend_regist) {
- apm_suspend_hook_init(wdsuspend, "IDE HDD", APM_MID_ORDER);
- }
-#endif /* APM */
return (1);
}
@@ -1847,13 +1836,4 @@ void bad144intern(struct disk *du) {
}
}
-#ifdef APM
-static int wdsuspend(void)
-{
- /* Currently, this routine has not be implemented. Sorry... */
-
- return 0;
-}
-#endif /* APM */
-
#endif /* NWDC > 0 */
diff --git a/sys/isa/syscons.c b/sys/isa/syscons.c
index 92ce827..6bdf180 100644
--- a/sys/isa/syscons.c
+++ b/sys/isa/syscons.c
@@ -35,7 +35,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: syscons.c,v 1.61 1994/10/01 02:56:19 davidg Exp $
+ * $Id: syscons.c,v 1.62 1994/10/02 14:08:57 ache Exp $
*/
#include "sc.h"
@@ -64,9 +64,6 @@
#include <i386/isa/timerreg.h>
#include <i386/isa/kbdtables.h>
#include <i386/i386/cons.h>
-#ifdef APM
-#include <machine/apm_bios.h>
-#endif
#if !defined(NCONS)
#define NCONS 12
@@ -291,16 +288,6 @@ struct isa_driver scdriver = {
pcprobe, pcattach, "sc",
};
-#ifdef APM
-static int
-pc_resume(void)
-{
- /* when the system wakes up, modifier keys must be re-initialized */
- shfts = ctls = alts = agrs = metas = 0;
- return 0;
-}
-#endif /* APM */
-
int
pcprobe(struct isa_device *dev)
{
@@ -399,9 +386,6 @@ pcattach(struct isa_device *dev)
/* get cursor going */
cursor_pos(1);
update_leds(console[0].status);
-#ifdef APM
- apm_resume_hook_init(pc_resume, "Syscons console", APM_MID_ORDER);
-#endif
return 0;
}
@@ -1470,8 +1454,6 @@ switch_scr(u_int next_scr)
static void
exchange_scr(void)
{
- struct tty *tp;
-
bcopy(Crtat, old_scp->scr_buf, old_scp->xsize * old_scp->ysize * 2);
old_scp->crt_base = old_scp->scr_buf;
move_crsr(old_scp, old_scp->xpos, old_scp->ypos);
@@ -2446,9 +2428,6 @@ next_code:
shutdown_nice();
break;
case SUSP:
-#ifdef APM
- apm_suspend_resume();
-#endif /* APM */
break;
case DBG:
OpenPOWER on IntegriCloud