Hi,

I need to implement poll function in my tty Linux driver , user space application should call poll/select functions in user space. The problem is tty_operations does not support poll() function, like file_operations.

How can I implement it?

Thank you