public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: "Ying-Chun Liu (PaulLiu)" <paul.liu@linaro.org>
To: ashish.jangam@kpitcummins.com
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>,
	Dajun <dajun.chen@diasemi.com>,
	linaro-dev@lists.linaro.org, linux-kernel@vger.kernel.org,
	lrg@slimlogic.co.uk
Subject: Re: [Patch 5/11] Regulator: DA9052 regulator support v3
Date: Fri, 07 Oct 2011 17:23:35 +0800	[thread overview]
Message-ID: <4E8EC517.2050006@linaro.org> (raw)
In-Reply-To: <1309948610.4168.12.camel@L-0532.kpit.com>

(2011年07月06日 18:36), ashishj3 wrote:
> +static int __devinit da9052_regulator_probe(struct platform_device *pdev)
> +{
> +	struct da9052_regulator *regulator;
> +	struct da9052 *da9052;
> +	struct da9052_pdata *pdata;
> +	int ret;
> +
> +	regulator = kzalloc(sizeof(struct da9052_regulator), GFP_KERNEL);
> +	if (!regulator)
> +		return -ENOMEM;
> +
> +	da9052 = dev_get_drvdata(pdev->dev.parent);
> +	pdata = da9052->dev->platform_data;
> +
> +	regulator->info = find_regulator_info(pdev->id);
> +	if (regulator->info == NULL) {
> +		dev_err(&pdev->dev, "invalid regulator ID specified\n");
> +		ret = -EINVAL;
> +		goto err;
> +	}
> +
> +	regulator->rdev = regulator_register(&regulator->info->reg_desc,
> +					     &pdev->dev,
> +					     pdata->regulators[pdev->id],
> +					     regulator);
> +	if (IS_ERR(regulator->rdev)) {
> +		dev_err(&pdev->dev, "failed to register regulator %s\n",
> +			regulator->info->reg_desc.name);
> +		ret = PTR_ERR(regulator->rdev);
> +		goto err;
> +	}
> +
> +	platform_set_drvdata(pdev, regulator);
> +
> +	return 0;
> +err:
> +	kfree(regulator);
> +	return ret;
> +}

Hi Ashish,

It seems to me that in this function, regulator->da9052 isn't initialized.

Regards,
Paul

  parent reply	other threads:[~2011-10-07  9:23 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-06 10:36 [Patch 5/11] Regulator: DA9052 regulator support v3 ashishj3
2011-07-06 15:14 ` Mark Brown
2011-10-07  9:23 ` Ying-Chun Liu (PaulLiu) [this message]
2011-10-07 10:20   ` Ashish Jangam

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=4E8EC517.2050006@linaro.org \
    --to=paul.liu@linaro.org \
    --cc=ashish.jangam@kpitcummins.com \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=dajun.chen@diasemi.com \
    --cc=linaro-dev@lists.linaro.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox