diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2016-10-12 08:20:22 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-10-17 09:14:55 +0200 |
commit | 0047b6e5f1b45b391244d78097631eb09a960202 (patch) | |
tree | 9d5c1503079301dea2bb233e5e17b7599a5610aa | |
parent | Staging: greybus: uart: Use gbphy_dev->dev instead of bundle->dev (diff) | |
download | linux-0047b6e5f1b45b391244d78097631eb09a960202.tar.xz linux-0047b6e5f1b45b391244d78097631eb09a960202.zip |
staging: android/ion: testing the wrong variable
We're testing "pdev" but we intended to test "heap_pdev". This is a
static checker fix and it's unlikely that anyone is affected by this
bug.
Fixes: 13439479c7de ('staging: ion: Add files for parsing the devicetree')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Laura Abbott <labbott@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/android/ion/ion_of.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/android/ion/ion_of.c b/drivers/staging/android/ion/ion_of.c index 15bac92b7f04..46b2bb99bfd6 100644 --- a/drivers/staging/android/ion/ion_of.c +++ b/drivers/staging/android/ion/ion_of.c @@ -107,7 +107,7 @@ struct ion_platform_data *ion_parse_dt(struct platform_device *pdev, heap_pdev = of_platform_device_create(node, heaps[i].name, &pdev->dev); - if (!pdev) + if (!heap_pdev) return ERR_PTR(-ENOMEM); heap_pdev->dev.platform_data = &heaps[i]; |