summaryrefslogtreecommitdiff
path: root/drivers/staging/fsl-mc/bus/mc-bus.c
diff options
context:
space:
mode:
authorJ. German Rivera <German.Rivera@freescale.com>2015-03-06 01:35:25 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-03-07 01:29:10 (GMT)
commit197f4d6a4a00915b29fa7ec71f8010b9c763e676 (patch)
tree74bcafca4e1aa0c0f8bae739771b8b91eeb8499a /drivers/staging/fsl-mc/bus/mc-bus.c
parentf2f2726b62f59424782516fd6d0d164892493ada (diff)
downloadlinux-197f4d6a4a00915b29fa7ec71f8010b9c763e676.tar.xz
staging: fsl-mc: fsl-mc object allocator driver
The fsl-mc object allocator driver manages "allocatable" fsl-mc objects such as DPBPs, DPMCPs and DPCONs. It provides services to other fsl-mc drivers to allocate/deallocate these types of objects. Signed-off-by: J. German Rivera <German.Rivera@freescale.com> Signed-off-by: Stuart Yoder <stuart.yoder@freescale.com> Acked-by: Alexander Graf <agraf@suse.de> 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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/fsl-mc/bus/mc-bus.c b/drivers/staging/fsl-mc/bus/mc-bus.c
index 72551e3..b4e9022 100644
--- a/drivers/staging/fsl-mc/bus/mc-bus.c
+++ b/drivers/staging/fsl-mc/bus/mc-bus.c
@@ -604,7 +604,7 @@ static int fsl_mc_bus_probe(struct platform_device *pdev)
mc_portal_phys_addr = res.start;
mc_portal_size = resource_size(&res);
error = fsl_create_mc_io(&pdev->dev, mc_portal_phys_addr,
- mc_portal_size, 0, &mc_io);
+ mc_portal_size, NULL, 0, &mc_io);
if (error < 0)
return error;