On Fri, Oct 23, 2020 at 07:45:35PM +0200, Paul Kocialkowski wrote: > This allows selecting a dedicated CMA memory pool (specified via > device-tree) instead of the default one. > > Signed-off-by: Paul Kocialkowski <paul.kocialkow...@bootlin.com>
Why would that be needed? > --- > drivers/media/platform/sunxi/sun6i-csi/sun6i_csi.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/drivers/media/platform/sunxi/sun6i-csi/sun6i_csi.c > b/drivers/media/platform/sunxi/sun6i-csi/sun6i_csi.c > index 28e89340fed9..5d2389a5cd17 100644 > --- a/drivers/media/platform/sunxi/sun6i-csi/sun6i_csi.c > +++ b/drivers/media/platform/sunxi/sun6i-csi/sun6i_csi.c > @@ -16,6 +16,7 @@ > #include <linux/module.h> > #include <linux/of.h> > #include <linux/of_device.h> > +#include <linux/of_reserved_mem.h> > #include <linux/platform_device.h> > #include <linux/pm_runtime.h> > #include <linux/regmap.h> > @@ -849,6 +850,12 @@ static int sun6i_csi_resource_request(struct > sun6i_csi_dev *sdev, > return PTR_ERR(sdev->regmap); > } > > + ret = of_reserved_mem_device_init(&pdev->dev); > + if (ret && ret != -ENODEV) { > + dev_err(&pdev->dev, "Unable to init reserved memory\n"); > + return ret; > + } > + > sdev->clk_mod = devm_clk_get(&pdev->dev, "mod"); If that clk_get or any subsequent function fail you'll end up leaking whatever the initialization of the reserved memory has allocated Maxime -- You received this message because you are subscribed to the Google Groups "linux-sunxi" group. To unsubscribe from this group and stop receiving emails from it, send an email to linux-sunxi+unsubscr...@googlegroups.com. To view this discussion on the web, visit https://groups.google.com/d/msgid/linux-sunxi/20201026154104.v32up7uh6oryqxaf%40gilmour.lan.
signature.asc
Description: PGP signature