Re: [PATCH v4] input/keyboard: new OpenCores Keyboard Controllerdriver

From: Dmitry Torokhov
Date: Tue Sep 15 2009 - 23:46:14 EST


Hi Mike,

On Tue, Sep 15, 2009 at 10:00:40PM -0400, Mike Frysinger wrote:
> +
> +static int __devexit opencores_kbd_remove(struct platform_device *pdev)
> +{
> + struct opencores_kbd *opencores_kbd = platform_get_drvdata(pdev);
> +
> + free_irq(opencores_kbd->irq, opencores_kbd);
> +
> + input_unregister_device(opencores_kbd->input);
> + kfree(opencores_kbd);

You need to do iounmap and free the memory region here as well.
> +
> + platform_set_drvdata(pdev, NULL);
> +
> + return 0;
> +}
> +

--
Dmitry
--
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/