Received: by mail.netbsd.org (Postfix, from userid 605) id 8AC2D84D4B; Fri, 18 Aug 2017 04:07:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1891884D49 for ; Fri, 18 Aug 2017 04:07:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id cw7V4xsq-Plv for ; Fri, 18 Aug 2017 04:07:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A115484D40 for ; Fri, 18 Aug 2017 04:07:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 91A5FFAD0; Fri, 18 Aug 2017 04:07:51 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Fri, 18 Aug 2017 04:07:51 +0000 From: "SAITOH Masanobu" Subject: CVS commit: src/sys/dev To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20170818040751.91A5FFAD0@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: source-changes.NetBSD.org Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "SAITOH Masanobu" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: msaitoh Date: Fri Aug 18 04:07:51 UTC 2017 Modified Files: src/sys/dev/i2c: lm_i2c.c src/sys/dev/ic: nslm7x.c nslm7xvar.h src/sys/dev/isa: lm_isa_common.c wbsio.c wbsioreg.h Log Message: - WBSIO_ID_W83627DHG and newer devices have 12bit device ID. So, change sioid from 8bit to 16bit and check with it strictly. - s/lm_match/nslm_match/ - split {wb,lm,def}_match() to XXX_match and XXX_attach(). - Rename lm_probe with lm_match and call {wb,nslm,def}_match() at the end of the function to check strictly. - NCT610[246]D is different from otehrs, so add new nct6102d_sensors[] table. - Register offsets of vendor ID and chip id of NCT610[246]D are different from others. When it failed reading vendor ID or chip ID, fallback to NCT610[246]D's register offsets. - Add debug messages. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/dev/i2c/lm_i2c.c cvs rdiff -u -r1.69 -r1.70 src/sys/dev/ic/nslm7x.c cvs rdiff -u -r1.32 -r1.33 src/sys/dev/ic/nslm7xvar.h cvs rdiff -u -r1.5 -r1.6 src/sys/dev/isa/lm_isa_common.c cvs rdiff -u -r1.14 -r1.15 src/sys/dev/isa/wbsio.c cvs rdiff -u -r1.2 -r1.3 src/sys/dev/isa/wbsioreg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.