diff options
author | phk <phk@FreeBSD.org> | 1995-05-03 03:04:02 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-05-03 03:04:02 +0000 |
commit | 99b2687d6c503523e52a8c29f46999cb495539c8 (patch) | |
tree | c9d25534be09f7052790136ba8ceecdaf7b11239 /sys | |
parent | c6651ce291ac2c6fa4974f0866cae1b579eb04e5 (diff) | |
download | FreeBSD-src-99b2687d6c503523e52a8c29f46999cb495539c8.zip FreeBSD-src-99b2687d6c503523e52a8c29f46999cb495539c8.tar.gz |
Forgot this part of the if_ze power off patch.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/i386/isa/pcic.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/i386/isa/pcic.c b/sys/i386/isa/pcic.c index 887e357..01f9f02 100644 --- a/sys/i386/isa/pcic.c +++ b/sys/i386/isa/pcic.c @@ -229,12 +229,8 @@ pcic_power_on (int slot) void pcic_power_off (int slot) { - /* - * If you success to power-off the PCMCIA slots and - * resume safely, please tell me your way to implement it. - * - * HOSOKAWA, Tatsumi <hosokawa@mt.cs.keio.ac.jp> - */ + pcic_putb (slot, PCIC_POWER, + pcic_getb (slot, PCIC_POWER) & ~(PCIC_OUTENA|PCIC_PCPWRE)); } void |