Module Name: src Committed By: mhitch Date: Tue Jan 12 20:24:45 UTC 2010
Modified Files: src/sys/arch/alpha/pci: sio.c Log Message: Fix incorrect Acer Labs ID. PCI_PRODUCT_ALI_M1543 had been incorrectly identified as product code 0x1533, which is what is actually in the CS20. PCI_PRODUCT_ALI_M1543 was corrected recently and sio.c would fail to match the bridge. To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 src/sys/arch/alpha/pci/sio.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/alpha/pci/sio.c diff -u src/sys/arch/alpha/pci/sio.c:1.48 src/sys/arch/alpha/pci/sio.c:1.49 --- src/sys/arch/alpha/pci/sio.c:1.48 Wed Aug 19 15:00:24 2009 +++ src/sys/arch/alpha/pci/sio.c Tue Jan 12 20:24:45 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: sio.c,v 1.48 2009/08/19 15:00:24 dyoung Exp $ */ +/* $NetBSD: sio.c,v 1.49 2010/01/12 20:24:45 mhitch Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -63,7 +63,7 @@ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: sio.c,v 1.48 2009/08/19 15:00:24 dyoung Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sio.c,v 1.49 2010/01/12 20:24:45 mhitch Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -155,7 +155,7 @@ return (1); if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ALI && - PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ALI_M1543) + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ALI_M1533) return (1); return (0);