On Wed, Nov 02, 2022 at 02:14:24PM +0100, Guillermo Rodriguez Garcia wrote: > What is the recommended way to have a layered device driver that can > talk to evdev ? Don't do that. evdev is a userspace interface, not something for internal kernel use. Just write userspace code that uses evdev to do what you want. Or if it's really necessary, add features to the real device driver. - Eric