diff options
author | bde <bde@FreeBSD.org> | 2004-04-18 05:30:02 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2004-04-18 05:30:02 +0000 |
commit | 6cd0e4679af1e52dd9a0f8e3a8136340cf8c9c03 (patch) | |
tree | b9e40ec961fc461730be2e2a5baa5c84767c3562 /sys/dev/puc | |
parent | 6e5024f5b5256817ee9294764ed83f202d45f4bc (diff) | |
download | FreeBSD-src-6cd0e4679af1e52dd9a0f8e3a8136340cf8c9c03.zip FreeBSD-src-6cd0e4679af1e52dd9a0f8e3a8136340cf8c9c03.tar.gz |
Fixed some style bugs (tab lossage) in rev.1.26.
Removed the requirement for a particular subvendor/subproduct in
rev.1.26 (VScom PCI-800L card). While the BARs, etc., may depend on
the sub-ids, this is not known to be so, and I think it is better to
guess that they don't. The decision to check sub-id checks in this
file is apparently random; for VScom cards they were checked in 3 of
8 cases.
Reviewed by: timeout by committer (joerg) after 6 months
Diffstat (limited to 'sys/dev/puc')
-rw-r--r-- | sys/dev/puc/pucdata.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/puc/pucdata.c b/sys/dev/puc/pucdata.c index d8ddb9b..95841ce 100644 --- a/sys/dev/puc/pucdata.c +++ b/sys/dev/puc/pucdata.c @@ -793,8 +793,8 @@ const struct puc_device_description puc_devices[] = { */ { "Titan VScom PCI-800L", NULL, - { 0x14d2, 0x8080, 0x14d2, 0x8080 }, - { 0xffff, 0xffff, 0xffff, 0xffff }, + { 0x14d2, 0x8080, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, { { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 }, { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 }, |