From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755707AbbCBVFZ (ORCPT ); Mon, 2 Mar 2015 16:05:25 -0500 Received: from atrey.karlin.mff.cuni.cz ([195.113.26.193]:58297 "EHLO atrey.karlin.mff.cuni.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755626AbbCBVFV (ORCPT ); Mon, 2 Mar 2015 16:05:21 -0500 Date: Mon, 2 Mar 2015 22:05:18 +0100 From: Pavel Machek To: NeilBrown Cc: Samuel Ortiz , Tony Lindgren , Lee Jones , Sebastian Reichel , Dmitry Eremin-Solenikov , David Woodhouse , GTA04 owners , linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org Subject: Re: [PATCH 06/15] twl4030_charger: split uA calculation into a function. Message-ID: <20150302210518.GM13270@amd> References: <20150224043341.4243.23291.stgit@notabene.brown> <20150224043351.4243.86053.stgit@notabene.brown> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150224043351.4243.86053.stgit@notabene.brown> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue 2015-02-24 15:33:51, NeilBrown wrote: > We will need this calculation in other places, so > create functions to map between register value and uA value. > > Signed-off-by: NeilBrown Acked-by: Pavel Machek > +static int regval2ua(int regval, bool cgain) > +{ > + if (cgain) > + return (regval * 16618 - 8500 * 1000) / 5; > + else > + return (regval * 16618 - 8500 * 1000) / 10; > +} int res = (regval * 16618 - 8500 * 1000); if (cgain) return res / 5; return res / 10; ? Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html