View | Details | Raw Unified | Return to bug 186587
Collapse All | Expand All

(-)amdtemp.c (+5 lines)
Lines 79-85 Link Here
79
#define	DEVICEID_AMD_MISC12	0x1403
79
#define	DEVICEID_AMD_MISC12	0x1403
80
#define	DEVICEID_AMD_MISC14	0x1703
80
#define	DEVICEID_AMD_MISC14	0x1703
81
#define	DEVICEID_AMD_MISC15	0x1603
81
#define	DEVICEID_AMD_MISC15	0x1603
82
#define	DEVICEID_AMD_MISC16	0x1533
82
83
84
83
static struct amdtemp_product {
85
static struct amdtemp_product {
84
	uint16_t	amdtemp_vendorid;
86
	uint16_t	amdtemp_vendorid;
85
	uint16_t	amdtemp_deviceid;
87
	uint16_t	amdtemp_deviceid;
Lines 90-95 Link Here
90
	{ VENDORID_AMD,	DEVICEID_AMD_MISC12 },
92
	{ VENDORID_AMD,	DEVICEID_AMD_MISC12 },
91
	{ VENDORID_AMD,	DEVICEID_AMD_MISC14 },
93
	{ VENDORID_AMD,	DEVICEID_AMD_MISC14 },
92
	{ VENDORID_AMD,	DEVICEID_AMD_MISC15 },
94
	{ VENDORID_AMD,	DEVICEID_AMD_MISC15 },
95
	{ VENDORID_AMD,	DEVICEID_AMD_MISC16 },
93
	{ 0, 0 }
96
	{ 0, 0 }
94
};
97
};
95
98
Lines 204-209 Link Here
204
	case 0x12:
207
	case 0x12:
205
	case 0x14:
208
	case 0x14:
206
	case 0x15:
209
	case 0x15:
210
	case 0x16:
207
		break;
211
		break;
208
	default:
212
	default:
209
		return (ENXIO);
213
		return (ENXIO);
Lines 327-332 Link Here
327
	case 0x12:
331
	case 0x12:
328
	case 0x14:
332
	case 0x14:
329
	case 0x15:
333
	case 0x15:
334
	case 0x16:
330
		/*
335
		/*
331
		 * There is only one sensor per package.
336
		 * There is only one sensor per package.
332
		 */
337
		 */

Return to bug 186587