aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/coresight
diff options
context:
space:
mode:
authorKaixu Xia <xiakaixu@huawei.com>2015-01-09 18:57:21 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-01-12 08:04:14 -0500
commitf7c55298f17f0bf9d257ea7f2f15cf920248db5b (patch)
treea2156845d24a6c346b480b9f35f525adff524173 /drivers/coresight
parentc61c4b5dd2c6b5dbf0f7e299db1e8411ef590f5c (diff)
coresight: fix comment in of_coresight.c
Outports is a member of the struct pdata and should be a better choice. 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')
-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 8bd524e49518..89ebbe29ac97 100644
--- a/drivers/coresight/of_coresight.c
+++ b/drivers/coresight/of_coresight.c
@@ -93,7 +93,7 @@ static int of_coresight_alloc_memory(struct device *dev,
93 if (!pdata->outports) 93 if (!pdata->outports)
94 return -ENOMEM; 94 return -ENOMEM;
95 95
96 /* Children connected to this component via @outport */ 96 /* Children connected to this component via @outports */
97 pdata->child_names = devm_kzalloc(dev, pdata->nr_outport * 97 pdata->child_names = devm_kzalloc(dev, pdata->nr_outport *
98 sizeof(*pdata->child_names), 98 sizeof(*pdata->child_names),
99 GFP_KERNEL); 99 GFP_KERNEL);