[patch] fix duplicate case value in ichsmb_pci.c

Pawel Worach pawel.worach at gmail.com
Tue Aug 9 20:38:05 UTC 2011


Hi,

clang trunk has yet another nice error (in this case harmless):

dev/ichsmb/ichsmb_pci.c:183:7: error: duplicate case value '590381190'
        case ID_DH89XXCC:
             ^
dev/ichsmb/ichsmb_pci.c:85:23: note: expanded from:
#define ID_DH89XXCC                     0x23308086
                                        ^
dev/ichsmb/ichsmb_pci.c:173:7: note: previous case defined here
        case ID_PCH_DH89XXCC:
             ^
dev/ichsmb/ichsmb_pci.c:70:27: note: expanded from:
#define ID_PCH_DH89XXCC                 0x23308086
                                        ^
1 error generated.

Fix (there is a more specific device_set_desc() for the 0x23308086 controller which is also called ID_DH89XXCC in another case):

 Index: sys/dev/ichsmb/ichsmb_pci.c
===================================================================
--- sys/dev/ichsmb/ichsmb_pci.c	(revision 224736)
+++ sys/dev/ichsmb/ichsmb_pci.c	(working copy)
@@ -67,7 +67,6 @@
 #include <dev/ichsmb/ichsmb_reg.h>
 
 /* PCI unique identifiers */
-#define ID_PCH_DH89XXCC			0x23308086
 #define ID_82801AA			0x24138086
 #define ID_82801AB			0x24238086
 #define ID_82801BA			0x24438086
@@ -170,7 +169,6 @@
 	case ID_82801JI:
 		device_set_desc(dev, "Intel 82801JI (ICH10) SMBus controller");
 		break;
-	case ID_PCH_DH89XXCC:
 	case ID_PCH:
 		device_set_desc(dev, "Intel PCH SMBus controller");
 		break;


-- 
Pawel



More information about the freebsd-current mailing list