Lines Matching refs:handler
148 struct rmi_function_handler *handler = to_rmi_function_handler(drv); in rmi_function_match() local
151 return fn->fd.function_number == handler->func; in rmi_function_match()
174 struct rmi_function_handler *handler) in rmi_create_function_irq() argument
191 handler->attention, IRQF_ONESHOT, in rmi_create_function_irq()
205 struct rmi_function_handler *handler = in rmi_function_probe() local
211 if (handler->probe) { in rmi_function_probe()
212 error = handler->probe(fn); in rmi_function_probe()
217 if (fn->num_of_irqs && handler->attention) { in rmi_function_probe()
218 error = rmi_create_function_irq(fn, handler); in rmi_function_probe()
229 struct rmi_function_handler *handler = in rmi_function_remove() local
232 if (handler->remove) in rmi_function_remove()
233 handler->remove(fn); in rmi_function_remove()
296 int __rmi_register_function_handler(struct rmi_function_handler *handler, in __rmi_register_function_handler() argument
300 struct device_driver *driver = &handler->driver; in __rmi_register_function_handler()
327 void rmi_unregister_function_handler(struct rmi_function_handler *handler) in rmi_unregister_function_handler() argument
329 driver_unregister(&handler->driver); in rmi_unregister_function_handler()