Lines Matching defs:input
9 #include <linux/input.h>
50 struct input_dev *input;
129 input_report_key(pwrkey->input, pwrkey->code,
131 input_sync(pwrkey->input);
226 pwrkey->input = devm_input_allocate_device(&pdev->dev);
227 if (!pwrkey->input) {
228 dev_dbg(&pdev->dev, "unable to allocate input device\n");
232 input_set_capability(pwrkey->input, EV_KEY, pwrkey->code);
234 pwrkey->input->name = "pm8941_pwrkey";
235 pwrkey->input->phys = "pm8941_pwrkey/input0";
267 error = input_register_device(pwrkey->input);
269 dev_err(&pdev->dev, "failed to register input device: %d\n",