Lines Matching refs:devres
1811 struct input_devres *devres = res; in devm_input_device_match() local
1813 return devres->input == data; in devm_input_device_match()
1818 struct input_devres *devres = res; in devm_input_device_release() local
1819 struct input_dev *input = devres->input; in devm_input_device_release()
1847 struct input_devres *devres; in devm_input_allocate_device() local
1849 devres = devres_alloc(devm_input_device_release, in devm_input_allocate_device()
1851 if (!devres) in devm_input_allocate_device()
1856 devres_free(devres); in devm_input_allocate_device()
1863 devres->input = input; in devm_input_allocate_device()
1864 devres_add(dev, devres); in devm_input_allocate_device()
2042 struct input_devres *devres = res; in devm_input_device_unregister() local
2043 struct input_dev *input = devres->input; in devm_input_device_unregister()
2075 struct input_devres *devres = NULL; in input_register_device() local
2082 devres = devres_alloc(devm_input_device_unregister, in input_register_device()
2084 if (!devres) in input_register_device()
2087 devres->input = dev; in input_register_device()
2153 devres_add(dev->dev.parent, devres); in input_register_device()
2163 devres_free(devres); in input_register_device()