[patch] PM / devfreq: event: testing the wrong variable
Chanwoo Choi
cw00.choi at samsung.com
Tue Feb 10 02:59:40 PST 2015
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 at 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)
>
> for (i = 0; i < info->num_events; i++) {
> edev[i] = devm_devfreq_event_add_edev(&pdev->dev, &desc[i]);
> - if (IS_ERR(edev)) {
> - ret = PTR_ERR(edev);
> + if (IS_ERR(edev[i])) {
> + ret = PTR_ERR(edev[i]);
> dev_err(&pdev->dev,
> "failed to add devfreq-event device\n");
> goto err;
>
Reviewed-by: Chanwoo Choi <cw00.choi at 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
More information about the linux-arm-kernel
mailing list