Re: [PATCH 1/1] gpio: add a driver for the Synopsys DesignWare APBGPIO block

From: Sebastian Hesselbarth
Date: Wed Nov 06 2013 - 18:29:30 EST


On 11/07/2013 12:18 AM, delicious quinoa wrote:
On Wed, Nov 6, 2013 at 5:09 PM, Fabio Estevam <festevam@xxxxxxxxx> wrote:
On Wed, Nov 6, 2013 at 8:49 PM, Alan Tull <delicious.quinoa@xxxxxxxxx> wrote:

+
+ res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+ gpio->regs = devm_ioremap_resource(&pdev->dev, res);
+ if (!gpio->regs) {
+ err = -ENOMEM;
+ goto out_free_ports;

The correct way to handle the error here would be:

if (IS_ERR(gpio->regs) {
err = PTR_ERR(gpio->regs)
goto out_free_ports;


+out_unregister:
+ dwapb_gpio_unregister(gpio);
+
+ if (gpio->domain) {
+ irq_dispose_mapping(gpio->hwirq);
+ irq_domain_remove(gpio->domain);
+ }
+
+out_free_ports:
+ devm_kfree(&pdev->dev, gpio->ports);

No need to call devm_kfree

+
+out_err:
+ devm_kfree(&pdev->dev, gpio);

Same here.

+ return err;
+}
+
+static int dwapb_gpio_remove(struct platform_device *pdev)
+{
+ struct dwapb_gpio *gpio = platform_get_drvdata(pdev);
+
+ dwapb_gpio_unregister(gpio);
+ if (gpio->domain) {
+ irq_dispose_mapping(gpio->hwirq);
+ irq_domain_remove(gpio->domain);
+ }
+ devm_kfree(&pdev->dev, gpio->ports);
+ devm_kfree(&pdev->dev, gpio);

No need to call devm_kfree

Regards,

Fabio Estevam

Cool, I agree. I will fix in v7.

Alan, will review tomorrow. Please do not send v7 too quickly,
but let it idle for some more days. Especially, DT maintainers
have so many reviews to do - so be patient.

Also, for v7, you should use
'git format-patch --subject-prefix "PATCH v7" ...' to reflect
the patch version in email subject line.

Sebastian

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/