summaryrefslogtreecommitdiffstats
path: root/drivers/coresight/of_coresight.c
diff options
context:
space:
mode:
authorKaixu Xia <xiakaixu@huawei.com>2015-01-09 16:57:22 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-01-12 05:04:14 -0800
commit2ccffaf92e7b7cc9dfa6c3458fc9cb151621680a (patch)
tree81220056090e49e818759f29d0d52c38b4834ee2 /drivers/coresight/of_coresight.c
parentf7c55298f17f0bf9d257ea7f2f15cf920248db5b (diff)
downloadop-kernel-dev-2ccffaf92e7b7cc9dfa6c3458fc9cb151621680a.zip
op-kernel-dev-2ccffaf92e7b7cc9dfa6c3458fc9cb151621680a.tar.gz
coresight: fixing validity check on remote device
A validity check should be made on the remote device, i.e rdev, rather than the current device. Signed-off-by: Kaixu Xia <xiakaixu@huawei.com> Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/coresight/of_coresight.c')
-rw-r--r--drivers/coresight/of_coresight.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/coresight/of_coresight.c b/drivers/coresight/of_coresight.c
index 89ebbe2..9a5ff56 100644
--- a/drivers/coresight/of_coresight.c
+++ b/drivers/coresight/of_coresight.c
@@ -174,7 +174,7 @@ struct coresight_platform_data *of_get_coresight_platform_data(
continue;
rdev = of_coresight_get_endpoint_device(rparent);
- if (!dev)
+ if (!rdev)
continue;
pdata->child_names[i] = dev_name(rdev);
OpenPOWER on IntegriCloud