| 50 | RT_OBJECT_HOOKLIST_DEFINE(rt_hw_serial_rxind); |
| 51 | |
| 52 | static rt_err_t serial_fops_rx_ind(rt_device_t dev, rt_size_t size) |
| 53 | { |
| 54 | rt_wqueue_wakeup(&dev->wait_queue, (void *)POLLIN); |
| 55 | |
| 56 | RT_OBJECT_HOOKLIST_CALL(rt_hw_serial_rxind, (dev, size)); |
| 57 | |
| 58 | return RT_EOK; |
| 59 | } |
| 60 | |
| 61 | /* fops for serial */ |
| 62 | static int serial_fops_open(struct dfs_file *fd) |
nothing calls this directly
no test coverage detected