From: Sujit Reddy Thumma <sthumma@codeaurora.org>
To: Santosh Y <santoshsy@gmail.com>
Cc: james.bottomley@hansenpartnership.com,
linux-scsi@vger.kernel.org, vinholikatti@gmail.com
Subject: Re: [PATCH 4/9] scsi: ufs: Add runtime PM support for UFS host controller driver
Date: Mon, 29 Jul 2013 23:43:33 +0530 [thread overview]
Message-ID: <51F6B0CD.8080401@codeaurora.org> (raw)
In-Reply-To: <1375031437-10206-5-git-send-email-santoshsy@gmail.com>
On 7/28/2013 10:40 PM, Santosh Y wrote:
> +
> /**
> * ufshcd_pltfrm_probe - probe routine of the driver
> * @pdev: pointer to Platform device handle
> @@ -122,14 +157,20 @@ static int ufshcd_pltfrm_probe(struct platform_device *pdev)
> goto out;
> }
>
> + pm_runtime_set_active(&pdev->dev);
> + pm_runtime_enable(&pdev->dev);
> +
> err = ufshcd_init(dev, &hba, mmio_base, irq);
> if (err) {
> dev_err(dev, "Intialization failed\n");
> - goto out;
> + goto out_disable_rpm;
> }
>
> platform_set_drvdata(pdev, hba);
>
Santosh, there is a small mistake in this patch which I overlooked
while re-basing my internal tree onto scsi-misc.
We should return from here without falling back to out_disable_rpm.
+ return 0;
or
+ goto out;
I can send a new patchset, but if you would like to fix it in your tree
itself I am okay with it.
> +out_disable_rpm:
> + pm_runtime_disable(&pdev->dev);
> + pm_runtime_set_suspended(&pdev->dev);
> out:
> return err;
> }
--
Regards,
Sujit
next prev parent reply other threads:[~2013-07-29 18:13 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-28 17:10 [PATCH 0/9] scsi:ufs: query, bkops support and other fixes Santosh Y
2013-07-28 17:10 ` [PATCH 1/9] scsi: ufs: Add support for sending NOP OUT UPIU Santosh Y
2013-07-28 17:10 ` [PATCH 2/9] scsi: ufs: Set fDeviceInit flag to initiate device initialization Santosh Y
2013-07-28 17:10 ` [PATCH 3/9] scsi: ufs: Add support for host assisted background operations Santosh Y
2013-07-28 17:10 ` [PATCH 4/9] scsi: ufs: Add runtime PM support for UFS host controller driver Santosh Y
2013-07-29 18:13 ` Sujit Reddy Thumma [this message]
2013-07-29 18:24 ` Santosh Y
2013-07-28 17:10 ` [PATCH 5/9] ufshcd-pci: release ioremapped region during removing driver Santosh Y
2013-07-28 17:10 ` [PATCH 6/9] ufs: don't disable_irq() if the IRQ can be shared among devices Santosh Y
2013-07-28 17:10 ` [PATCH 7/9] ufs: don't stop controller before scsi_remove_host() Santosh Y
2013-07-28 17:10 ` [PATCH 8/9] ufshcd-pltfrm: remove redundant dev_err call in ufshcd_pltfrm_probe() Santosh Y
2013-07-28 17:10 ` [PATCH 9/9] drivers/scsi/ufs: don't check resource with devm_ioremap_resource Santosh Y
2013-07-29 19:05 ` [PATCH 0/9] scsi:ufs: query, bkops support and other fixes Santosh Y
-- strict thread matches above, loose matches on Subject: below --
2013-07-29 19:05 Santosh Y
2013-07-29 19:06 ` [PATCH 4/9] scsi: ufs: Add runtime PM support for UFS host controller driver Santosh Y
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=51F6B0CD.8080401@codeaurora.org \
--to=sthumma@codeaurora.org \
--cc=james.bottomley@hansenpartnership.com \
--cc=linux-scsi@vger.kernel.org \
--cc=santoshsy@gmail.com \
--cc=vinholikatti@gmail.com \
/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.