From: Samuel Ortiz <sameo@linux.intel.com>
To: Dan Carpenter <error27@gmail.com>,
Haojian Zhuang <haojian.zhuang@marvell.com>,
Mark Brown <broonie@opensource.wolfsonmicro.com>,
Liam Girdwood <lrg@slimlogic.co.uk>,
linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [patch] mfd/88pm860x: fix uninitialized variable and clean up
Date: Fri, 18 Jun 2010 18:24:32 +0000 [thread overview]
Message-ID: <20100618182432.GE3582@sortiz.org> (raw)
In-Reply-To: <20100526225409.GQ22515@bicker>
Hi Dan,
On Thu, May 27, 2010 at 12:54:09AM +0200, Dan Carpenter wrote:
> The original code had a compile warning:
> drivers/mfd/88pm860x-core.c:431: warning: ‘ret’ may be used
> uninitialized in this function
> It seems like the warning is valid if either pdata or pdata->touch is
> NULL.
>
> This patch checks pdata and pdata->touch at the beginning of the
> function. That means everything can be pulled in one indent level.
> Now all the statements fit within the 80 character limit.
>
> Also at that point the "use_gpadc" variable isn't needed and removing
> it simplifies the logic.
Thanks, patch applied to my for-next branch.
Cheers,
Samuel.
> Signed-off-by: Dan Carpenter <error27@gmail.com>
>
> diff --git a/drivers/mfd/88pm860x-core.c b/drivers/mfd/88pm860x-core.c
> index 405d2d5..f9ada69 100644
> --- a/drivers/mfd/88pm860x-core.c
> +++ b/drivers/mfd/88pm860x-core.c
> @@ -428,52 +428,44 @@ static int __devinit device_gpadc_init(struct pm860x_chip *chip,
> {
> struct i2c_client *i2c = (chip->id = CHIP_PM8607) ? chip->client \
> : chip->companion;
> - int use_gpadc = 0, data, ret;
> + int data;
> + int ret;
>
> /* initialize GPADC without activating it */
>
> - if (pdata && pdata->touch) {
> - /* set GPADC MISC1 register */
> - data = 0;
> - data |= (pdata->touch->gpadc_prebias << 1)
> - & PM8607_GPADC_PREBIAS_MASK;
> - data |= (pdata->touch->slot_cycle << 3)
> - & PM8607_GPADC_SLOT_CYCLE_MASK;
> - data |= (pdata->touch->off_scale << 5)
> - & PM8607_GPADC_OFF_SCALE_MASK;
> - data |= (pdata->touch->sw_cal << 7)
> - & PM8607_GPADC_SW_CAL_MASK;
> - if (data) {
> - ret = pm860x_reg_write(i2c, PM8607_GPADC_MISC1, data);
> - if (ret < 0)
> - goto out;
> - }
> - /* set tsi prebias time */
> - if (pdata->touch->tsi_prebias) {
> - data = pdata->touch->tsi_prebias;
> - ret = pm860x_reg_write(i2c, PM8607_TSI_PREBIAS, data);
> - if (ret < 0)
> - goto out;
> - }
> - /* set prebias & prechg time of pen detect */
> - data = 0;
> - data |= pdata->touch->pen_prebias & PM8607_PD_PREBIAS_MASK;
> - data |= (pdata->touch->pen_prechg << 5)
> - & PM8607_PD_PRECHG_MASK;
> - if (data) {
> - ret = pm860x_reg_write(i2c, PM8607_PD_PREBIAS, data);
> - if (ret < 0)
> - goto out;
> - }
> + if (!pdata || !pdata->touch)
> + return -EINVAL;
>
> - use_gpadc = 1;
> + /* set GPADC MISC1 register */
> + data = 0;
> + data |= (pdata->touch->gpadc_prebias << 1) & PM8607_GPADC_PREBIAS_MASK;
> + data |= (pdata->touch->slot_cycle << 3) & PM8607_GPADC_SLOT_CYCLE_MASK;
> + data |= (pdata->touch->off_scale << 5) & PM8607_GPADC_OFF_SCALE_MASK;
> + data |= (pdata->touch->sw_cal << 7) & PM8607_GPADC_SW_CAL_MASK;
> + if (data) {
> + ret = pm860x_reg_write(i2c, PM8607_GPADC_MISC1, data);
> + if (ret < 0)
> + goto out;
> }
> -
> - /* turn on GPADC */
> - if (use_gpadc) {
> - ret = pm860x_set_bits(i2c, PM8607_GPADC_MISC1,
> - PM8607_GPADC_EN, PM8607_GPADC_EN);
> + /* set tsi prebias time */
> + if (pdata->touch->tsi_prebias) {
> + data = pdata->touch->tsi_prebias;
> + ret = pm860x_reg_write(i2c, PM8607_TSI_PREBIAS, data);
> + if (ret < 0)
> + goto out;
> }
> + /* set prebias & prechg time of pen detect */
> + data = 0;
> + data |= pdata->touch->pen_prebias & PM8607_PD_PREBIAS_MASK;
> + data |= (pdata->touch->pen_prechg << 5) & PM8607_PD_PRECHG_MASK;
> + if (data) {
> + ret = pm860x_reg_write(i2c, PM8607_PD_PREBIAS, data);
> + if (ret < 0)
> + goto out;
> + }
> +
> + ret = pm860x_set_bits(i2c, PM8607_GPADC_MISC1,
> + PM8607_GPADC_EN, PM8607_GPADC_EN);
> out:
> return ret;
> }
--
Intel Open Source Technology Centre
http://oss.intel.com/
WARNING: multiple messages have this Message-ID (diff)
From: Samuel Ortiz <sameo@linux.intel.com>
To: Dan Carpenter <error27@gmail.com>,
Haojian Zhuang <haojian.zhuang@marvell.com>,
Mark Brown <broonie@opensource.wolfsonmicro.com>,
Liam Girdwood <lrg@slimlogic.co.uk>,
linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [patch] mfd/88pm860x: fix uninitialized variable and clean up
Date: Fri, 18 Jun 2010 20:24:32 +0200 [thread overview]
Message-ID: <20100618182432.GE3582@sortiz.org> (raw)
In-Reply-To: <20100526225409.GQ22515@bicker>
Hi Dan,
On Thu, May 27, 2010 at 12:54:09AM +0200, Dan Carpenter wrote:
> The original code had a compile warning:
> drivers/mfd/88pm860x-core.c:431: warning: ‘ret’ may be used
> uninitialized in this function
> It seems like the warning is valid if either pdata or pdata->touch is
> NULL.
>
> This patch checks pdata and pdata->touch at the beginning of the
> function. That means everything can be pulled in one indent level.
> Now all the statements fit within the 80 character limit.
>
> Also at that point the "use_gpadc" variable isn't needed and removing
> it simplifies the logic.
Thanks, patch applied to my for-next branch.
Cheers,
Samuel.
> Signed-off-by: Dan Carpenter <error27@gmail.com>
>
> diff --git a/drivers/mfd/88pm860x-core.c b/drivers/mfd/88pm860x-core.c
> index 405d2d5..f9ada69 100644
> --- a/drivers/mfd/88pm860x-core.c
> +++ b/drivers/mfd/88pm860x-core.c
> @@ -428,52 +428,44 @@ static int __devinit device_gpadc_init(struct pm860x_chip *chip,
> {
> struct i2c_client *i2c = (chip->id == CHIP_PM8607) ? chip->client \
> : chip->companion;
> - int use_gpadc = 0, data, ret;
> + int data;
> + int ret;
>
> /* initialize GPADC without activating it */
>
> - if (pdata && pdata->touch) {
> - /* set GPADC MISC1 register */
> - data = 0;
> - data |= (pdata->touch->gpadc_prebias << 1)
> - & PM8607_GPADC_PREBIAS_MASK;
> - data |= (pdata->touch->slot_cycle << 3)
> - & PM8607_GPADC_SLOT_CYCLE_MASK;
> - data |= (pdata->touch->off_scale << 5)
> - & PM8607_GPADC_OFF_SCALE_MASK;
> - data |= (pdata->touch->sw_cal << 7)
> - & PM8607_GPADC_SW_CAL_MASK;
> - if (data) {
> - ret = pm860x_reg_write(i2c, PM8607_GPADC_MISC1, data);
> - if (ret < 0)
> - goto out;
> - }
> - /* set tsi prebias time */
> - if (pdata->touch->tsi_prebias) {
> - data = pdata->touch->tsi_prebias;
> - ret = pm860x_reg_write(i2c, PM8607_TSI_PREBIAS, data);
> - if (ret < 0)
> - goto out;
> - }
> - /* set prebias & prechg time of pen detect */
> - data = 0;
> - data |= pdata->touch->pen_prebias & PM8607_PD_PREBIAS_MASK;
> - data |= (pdata->touch->pen_prechg << 5)
> - & PM8607_PD_PRECHG_MASK;
> - if (data) {
> - ret = pm860x_reg_write(i2c, PM8607_PD_PREBIAS, data);
> - if (ret < 0)
> - goto out;
> - }
> + if (!pdata || !pdata->touch)
> + return -EINVAL;
>
> - use_gpadc = 1;
> + /* set GPADC MISC1 register */
> + data = 0;
> + data |= (pdata->touch->gpadc_prebias << 1) & PM8607_GPADC_PREBIAS_MASK;
> + data |= (pdata->touch->slot_cycle << 3) & PM8607_GPADC_SLOT_CYCLE_MASK;
> + data |= (pdata->touch->off_scale << 5) & PM8607_GPADC_OFF_SCALE_MASK;
> + data |= (pdata->touch->sw_cal << 7) & PM8607_GPADC_SW_CAL_MASK;
> + if (data) {
> + ret = pm860x_reg_write(i2c, PM8607_GPADC_MISC1, data);
> + if (ret < 0)
> + goto out;
> }
> -
> - /* turn on GPADC */
> - if (use_gpadc) {
> - ret = pm860x_set_bits(i2c, PM8607_GPADC_MISC1,
> - PM8607_GPADC_EN, PM8607_GPADC_EN);
> + /* set tsi prebias time */
> + if (pdata->touch->tsi_prebias) {
> + data = pdata->touch->tsi_prebias;
> + ret = pm860x_reg_write(i2c, PM8607_TSI_PREBIAS, data);
> + if (ret < 0)
> + goto out;
> }
> + /* set prebias & prechg time of pen detect */
> + data = 0;
> + data |= pdata->touch->pen_prebias & PM8607_PD_PREBIAS_MASK;
> + data |= (pdata->touch->pen_prechg << 5) & PM8607_PD_PRECHG_MASK;
> + if (data) {
> + ret = pm860x_reg_write(i2c, PM8607_PD_PREBIAS, data);
> + if (ret < 0)
> + goto out;
> + }
> +
> + ret = pm860x_set_bits(i2c, PM8607_GPADC_MISC1,
> + PM8607_GPADC_EN, PM8607_GPADC_EN);
> out:
> return ret;
> }
--
Intel Open Source Technology Centre
http://oss.intel.com/
next prev parent reply other threads:[~2010-06-18 18:24 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-26 22:54 [patch] mfd/88pm860x: fix uninitialized variable and clean up Dan Carpenter
2010-05-26 22:54 ` Dan Carpenter
2010-05-27 2:08 ` Haojian Zhuang
2010-05-27 2:08 ` Haojian Zhuang
2010-06-18 18:24 ` Samuel Ortiz [this message]
2010-06-18 18:24 ` Samuel Ortiz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100618182432.GE3582@sortiz.org \
--to=sameo@linux.intel.com \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=error27@gmail.com \
--cc=haojian.zhuang@marvell.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lrg@slimlogic.co.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.