From owner-cvs-src-old@FreeBSD.ORG Tue Feb 3 16:14:50 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 515DF1065822 for ; Tue, 3 Feb 2009 16:14:50 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 388578FC17 for ; Tue, 3 Feb 2009 16:14:50 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n13GEoH8038466 for ; Tue, 3 Feb 2009 16:14:50 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n13GEotJ038465 for cvs-src-old@freebsd.org; Tue, 3 Feb 2009 16:14:50 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200902031614.n13GEotJ038465@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Tue, 3 Feb 2009 16:14:37 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ichsmb ichsmb.c src/sys/dev/ipmi ipmi_smbios.c src/sys/dev/smbus smb.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Feb 2009 16:14:52 -0000 jhb 2009-02-03 16:14:37 UTC FreeBSD src repository Modified files: sys/dev/ichsmb ichsmb.c sys/dev/ipmi ipmi_smbios.c sys/dev/smbus smb.c Log: SVN rev 188077 on 2009-02-03 16:14:37Z by jhb - Change ichsmb(4) to follow the format of all the other smbus controllers for slave addressing by using left-adjusted slave addresses (i.e. xxxxxxx0b). - Require the low bit of the slave address to always be zero in smb(4) to help catch broken applications. - Adjust some code in the IPMI driver to not convert the slave address for SSIF to a right-adjusted address. I (or possibly ambrisko@) added this in the past to (unknowingly) work around the bug in ichsmb(4). Submitted by: Andriy Gapon (1,2) MFC after: 1 month Revision Changes Path 1.20 +10 -10 src/sys/dev/ichsmb/ichsmb.c 1.5 +2 -2 src/sys/dev/ipmi/ipmi_smbios.c 1.40 +4 -0 src/sys/dev/smbus/smb.c