summaryrefslogtreecommitdiff
path: root/drivers/staging/fsl-mc/bus/mc-bus.c
diff options
context:
space:
mode:
authorItai Katz <itai.katz@nxp.com>2016-04-11 16:56:05 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-04-30 01:00:45 (GMT)
commit1716cb4c65d2ca4e18110b345b11b285d89d346f (patch)
tree400f25293b79b1f0bf5a0d3e131c418d92cdd8fc /drivers/staging/fsl-mc/bus/mc-bus.c
parent9529d166f32a2364fa644f8431ba508443953d64 (diff)
downloadlinux-1716cb4c65d2ca4e18110b345b11b285d89d346f.tar.xz
staging: fsl-mc: add dprc version check
The dprc driver supports dprc version 5.0 and above. This patch adds the code to check the version. Signed-off-by: Itai Katz <itai.katz@nxp.com> (Stuart: resolved merge conflicts, split dpseci quirk into separate patch) Signed-off-by: Stuart Yoder <stuart.yoder@nxp.com> Acked-by: German Rivera <german.rivera@nxp.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/fsl-mc/bus/mc-bus.c')
-rw-r--r--drivers/staging/fsl-mc/bus/mc-bus.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/fsl-mc/bus/mc-bus.c b/drivers/staging/fsl-mc/bus/mc-bus.c
index b4c3c5e..4053643 100644
--- a/drivers/staging/fsl-mc/bus/mc-bus.c
+++ b/drivers/staging/fsl-mc/bus/mc-bus.c
@@ -745,6 +745,7 @@ static int fsl_mc_bus_probe(struct platform_device *pdev)
goto error_cleanup_mc_io;
}
+ memset(&obj_desc, 0, sizeof(struct dprc_obj_desc));
error = get_dprc_version(mc_io, container_id,
&obj_desc.ver_major, &obj_desc.ver_minor);
if (error < 0)