* Re: Re: [patch] PM / devfreq: event: testing the wrong variable
@ 2015-02-12 9:00 MyungJoo Ham
0 siblings, 0 replies; only message in thread
From: MyungJoo Ham @ 2015-02-12 9:00 UTC (permalink / raw)
To: 최찬우, Dan Carpenter
Cc: 박경민, Kukjin Kim, linux-pm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org,
kernel-janitors@vger.kernel.org
>
> On 02/10/2015 07:35 PM, Dan Carpenter wrote:
> > There is a typo here so we test "edev" but we intended to test
> > "edev[i]".
> >
> > Fixes: f262f28c1470 ('PM / devfreq: event: Add devfreq_event class')
> > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> >
> > diff --git a/drivers/devfreq/event/exynos-ppmu.c b/drivers/devfreq/event/exynos-ppmu.c
> > index 135be0a..ad83473 100644
> > --- a/drivers/devfreq/event/exynos-ppmu.c
> > +++ b/drivers/devfreq/event/exynos-ppmu.c
> > @@ -327,8 +327,8 @@ static int exynos_ppmu_probe(struct platform_device *pdev)
> > - if (IS_ERR(edev)) {
> > - ret = PTR_ERR(edev);
> > + if (IS_ERR(edev[i])) {
> > + ret = PTR_ERR(edev[i]);
>
> Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com>
>
> But,
> This patch has not yet merged to linux.git (http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git).
> After releasing Linux 3.20-rc1, this patch will be handled.
>
> Thanks,
> Chanwoo Choi
Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2015-02-12 9:00 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-12 9:00 Re: [patch] PM / devfreq: event: testing the wrong variable MyungJoo Ham
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox