summaryrefslogtreecommitdiffstats
path: root/drivers/coresight/coresight-replicator.c
diff options
context:
space:
mode:
authorKaixu Xia2015-01-26 17:22:17 +0100
committerGreg Kroah-Hartman2015-02-04 00:48:51 +0100
commit410d841a599683408a77f42f110cd17298682520 (patch)
treeab2f5d867d32a58c38297039af493e3b23e978c9 /drivers/coresight/coresight-replicator.c
parentpdfdocs: Fix 'make pdfdocs' failure for 'uio-howto.tmpl' (diff)
downloadkernel-qcow2-linux-410d841a599683408a77f42f110cd17298682520.tar.gz
kernel-qcow2-linux-410d841a599683408a77f42f110cd17298682520.tar.xz
kernel-qcow2-linux-410d841a599683408a77f42f110cd17298682520.zip
coresight: fix the replicator subtype value
According to the classification, the type of replicator is link, so the subtype should also be link_subtype. 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/coresight-replicator.c')
-rw-r--r--drivers/coresight/coresight-replicator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/coresight/coresight-replicator.c b/drivers/coresight/coresight-replicator.c
index a2dfcf903551..cdf05537d574 100644
--- a/drivers/coresight/coresight-replicator.c
+++ b/drivers/coresight/coresight-replicator.c
@@ -87,7 +87,7 @@ static int replicator_probe(struct platform_device *pdev)
return -ENOMEM;
desc->type = CORESIGHT_DEV_TYPE_LINK;
- desc->subtype.sink_subtype = CORESIGHT_DEV_SUBTYPE_LINK_SPLIT;
+ desc->subtype.link_subtype = CORESIGHT_DEV_SUBTYPE_LINK_SPLIT;
desc->ops = &replicator_cs_ops;
desc->pdata = pdev->dev.platform_data;
desc->dev = &pdev->dev;