diff --git a/sys/dev/i2c/sdtemp.c b/sys/dev/i2c/sdtemp.c index c3d2bc97f08a..1827ee98e24a 100644 --- a/sys/dev/i2c/sdtemp.c +++ b/sys/dev/i2c/sdtemp.c @@ -1,4 +1,4 @@ -/* $NetBSD: sdtemp.c,v 1.26 2015/05/20 00:43:28 msaitoh Exp $ */ +/* $NetBSD: sdtemp.c,v 1.27 2016/07/26 07:25:51 msaitoh Exp $ */ /* * Copyright (c) 2009 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: sdtemp.c,v 1.26 2015/05/20 00:43:28 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sdtemp.c,v 1.27 2016/07/26 07:25:51 msaitoh Exp $"); #include #include @@ -123,7 +123,7 @@ sdtemp_dev_table[] = { { STTS_MANUFACTURER_ID, STTS_2002_DEVICE_ID, STTS_2002_MASK, 2, "STmicroelectronics STTS2002" }, { STTS_MANUFACTURER_ID, STTS_2004_DEVICE_ID, STTS_2004_MASK, 2, - "STmicroelectronics STTS2002" }, + "STmicroelectronics STTS2004" }, { STTS_MANUFACTURER_ID, STTS_3000_DEVICE_ID, STTS_3000_MASK, 2, "STmicroelectronics STTS3000" }, { CAT_MANUFACTURER_ID, CAT_34TS02_DEVICE_ID, CAT_34TS02_MASK, 4, @@ -176,8 +176,8 @@ sdtemp_match(device_t parent, cfdata_t cf, void *aux) i = sdtemp_lookup(mfgid, devid); if (sdtemp_dev_table[i].sdtemp_mfg_id == 0) { - aprint_debug("sdtemp: No match for mfg 0x%04x dev 0x%02x " - "rev 0x%02x at address 0x%02x\n", mfgid, devid >> 8, + aprint_debug("sdtemp: No match for mfg 0x%04x dev 0x%04x " + "rev 0x%02x at address 0x%02x\n", mfgid, devid, devid & 0xff, sc.sc_address); return 0; } @@ -213,8 +213,8 @@ sdtemp_attach(device_t parent, device_t self, void *aux) if (sdtemp_dev_table[i].sdtemp_mfg_id == 0) aprint_debug_dev(self, - "mfg 0x%04x dev 0x%02x rev 0x%02x at addr 0x%02x\n", - mfgid, devid >> 8, devid & 0xff, ia->ia_addr); + "mfg 0x%04x dev 0x%04x rev 0x%02x at addr 0x%02x\n", + mfgid, devid, devid & 0xff, ia->ia_addr); /* * Alarm capability is required; if not present, this is likely