Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752291AbbLNBhA (ORCPT ); Sun, 13 Dec 2015 20:37:00 -0500 Received: from mail1.bemta3.messagelabs.com ([195.245.230.170]:28203 "EHLO mail1.bemta3.messagelabs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752240AbbLNBgz convert rfc822-to-8bit (ORCPT ); Sun, 13 Dec 2015 20:36:55 -0500 X-Greylist: delayed 417 seconds by postgrey-1.27 at vger.kernel.org; Sun, 13 Dec 2015 20:36:55 EST X-Env-Sender: James.Ban.opensource@diasemi.com X-Msg-Ref: server-4.tower-38.messagelabs.com!1450056592!10490961!1 X-Originating-IP: [87.137.64.195] X-StarScan-Received: X-StarScan-Version: 7.35.1; banners=-,-,- X-VirusChecked: Checked From: "Opensource [James Seong-Won Ban]" To: Dan Carpenter , Liam Girdwood CC: Mark Brown , "linux-kernel@vger.kernel.org" , "kernel-janitors@vger.kernel.org" Subject: RE: [patch] regulator: pv88090: logical vs bitwise AND typo Thread-Topic: [patch] regulator: pv88090: logical vs bitwise AND typo Thread-Index: AQHRNNoZUwOAbFhwGEynakiq1KbUYp7JqolQ Date: Mon, 14 Dec 2015 01:29:50 +0000 Message-ID: <0ACAE736BB7A70499F1D8D5E6AC1854C01E0C43E07@NB-EX-MBX01.diasemi.com> References: <20151212123843.GB21408@mwanda> In-Reply-To: <20151212123843.GB21408@mwanda> Accept-Language: ko-KR, de-DE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.95.26.25] x-exclaimer-md-config: 8d172408-bd6a-42b1-8e53-daaedf35a5af Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8BIT MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1480 Lines: 36 On Saturday, December 12, 2015 9:39 PM Dan Carpenter wrote: > To: Liam Girdwood; Opensource [James Seong-Won Ban] > Cc: Mark Brown; linux-kernel@vger.kernel.org; kernel- > janitors@vger.kernel.org > Subject: [patch] regulator: pv88090: logical vs bitwise AND typo > > These were supposed to be bitwise AND instead of logical. Also kernel style is > for the operator to be on the first line and I removed some extra parenthesis. > > Fixes: c90456e36d9c ('regulator: pv88090: new regulator driver') > Signed-off-by: Dan Carpenter > --- > At the end we use these values for: > > index = ((range << 1) | conf2); > > So, in theory, "index" is a number between 0-3. The problem is that we use it > as an index into the pv88090_buck_vol[] array which has only 3 elements so it's > potentially reading one step beyond then end. Possibly the hardware spec says > that range and conf2 can not both be set at the same time. I don't know. > James, can you take a look at this? Hi Dan, Basically conf2 and range are defined in OTP and should not be changed by user. As you pointed out, it is not feasible to set the register at active state because the value can not be set at the same time. Regards, James -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/