Lines Matching refs:gpio_keys_pdata
70 struct gpio_keys_platform_data *gpio_keys_pdata; in soc_button_device_create() local
79 gpio_keys_pdata = devm_kzalloc(&pdev->dev, in soc_button_device_create()
80 sizeof(*gpio_keys_pdata) + in soc_button_device_create()
83 if (!gpio_keys_pdata) in soc_button_device_create()
86 gpio_keys = (void *)(gpio_keys_pdata + 1); in soc_button_device_create()
113 gpio_keys_pdata->buttons = gpio_keys; in soc_button_device_create()
114 gpio_keys_pdata->nbuttons = n_buttons; in soc_button_device_create()
115 gpio_keys_pdata->rep = autorepeat; in soc_button_device_create()
123 error = platform_device_add_data(pd, gpio_keys_pdata, in soc_button_device_create()
124 sizeof(*gpio_keys_pdata)); in soc_button_device_create()
137 devm_kfree(&pdev->dev, gpio_keys_pdata); in soc_button_device_create()