diff options
author | imp <imp@FreeBSD.org> | 2001-05-19 06:36:09 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2001-05-19 06:36:09 +0000 |
commit | cd110221e4a2a99067a0a1442afce828b6c55d7e (patch) | |
tree | a24ee62821fdae1bedf61ec5ccbb79218abe2685 | |
parent | 70e490bf1380eb8b60a5c5e17dba93411f0e279f (diff) | |
download | FreeBSD-src-cd110221e4a2a99067a0a1442afce828b6c55d7e.zip FreeBSD-src-cd110221e4a2a99067a0a1442afce828b6c55d7e.tar.gz |
Add back the plain i82365 to the list of bridges that do special
things to get 3.3V. It appears that some cardbus chipsets have id
registers that say they are C step parts, but they really support the
DF step 3.3V functionality.
# Need to verify that IBM KING is handled properly since the MISC1
# register is really a cirrus logic only register.
-rw-r--r-- | sys/pccard/pcic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c index 01d1633..6a07b73 100644 --- a/sys/pccard/pcic.c +++ b/sys/pccard/pcic.c @@ -385,6 +385,7 @@ pcic_power(struct slot *slt) if ((c & PCIC_POW) == 0) slt->pwr.vcc = 33; /* FALL THROUGH */ + case PCIC_I82365: case PCIC_PD672X: case PCIC_PD6710: case PCIC_VG365: |