| 61 | RT_OBJECT_HOOKLIST_DEFINE(rt_hw_serial_rxind); |
| 62 | |
| 63 | static rt_err_t serial_fops_rx_ind(rt_device_t dev, rt_size_t size) |
| 64 | { |
| 65 | rt_wqueue_wakeup(&(dev->wait_queue), (void*)POLLIN); |
| 66 | |
| 67 | RT_OBJECT_HOOKLIST_CALL(rt_hw_serial_rxind, (dev, size)); |
| 68 | |
| 69 | return RT_EOK; |
| 70 | } |
| 71 | |
| 72 | /* fops for serial */ |
| 73 | static int serial_fops_open(struct dfs_file *fd) |
nothing calls this directly
no test coverage detected