Re: [PATCH RESEND] input: gpio_keys_polled: convert to dt
From: Alexandre Pereira da Silva <hidden>
Date: 2012-06-21 11:37:21
Also in:
linux-devicetree, linux-input
From: Alexandre Pereira da Silva <hidden>
Date: 2012-06-21 11:37:21
Also in:
linux-devicetree, linux-input
On Thu, Jun 21, 2012 at 6:18 AM, Dmitry Torokhov [off-list ref] wrote:
quoted
@@ -38,7 +40,7 @@ struct gpio_keys_button_data {struct gpio_keys_polled_dev { struct input_polled_dev *poll_dev; struct device *dev; - struct gpio_keys_platform_data *pdata; + struct gpio_keys_platform_data pdata;I am not sure why this change is needed. Also it seems that the driver leaks DT-created pdata on unload.
Pdata is now a member of gpio_keys_polled_dev now and that one is kzalloc'ed at probe and kfree'd at the removal and errors. I see no leaks there. I could kzalloc and kfree gpio_keys_polled_dev independently instead, to avoid all those pointer changes if you think it's better. This is mostly a clone from the dt handling in gpio_keys, and comparing both now, I see that it will leak on pdata->buttons, so I will fix that.
quoted
+ +#define gpio_keys_polled_of_match NULLPlease use of_match_ptr() instead.
Thanks for the suggestion, I will implement that.