Lines Matching refs:gpio_keys_pdata
76 struct gpio_keys_platform_data *gpio_keys_pdata; in soc_button_device_create() local
81 gpio_keys_pdata = devm_kzalloc(&pdev->dev, in soc_button_device_create()
82 sizeof(*gpio_keys_pdata) + in soc_button_device_create()
85 if (!gpio_keys_pdata) in soc_button_device_create()
88 gpio_keys = (void *)(gpio_keys_pdata + 1); in soc_button_device_create()
112 gpio_keys_pdata->buttons = gpio_keys; in soc_button_device_create()
113 gpio_keys_pdata->nbuttons = n_buttons; in soc_button_device_create()
114 gpio_keys_pdata->rep = autorepeat; in soc_button_device_create()
122 error = platform_device_add_data(pd, gpio_keys_pdata, in soc_button_device_create()
123 sizeof(*gpio_keys_pdata)); in soc_button_device_create()
136 devm_kfree(&pdev->dev, gpio_keys_pdata); in soc_button_device_create()