| 107 | } |
| 108 | |
| 109 | static int serial_fops_close(struct dfs_file *fd) |
| 110 | { |
| 111 | rt_device_t device; |
| 112 | |
| 113 | device = (rt_device_t)fd->vnode->data; |
| 114 | |
| 115 | rt_device_set_rx_indicate(device, RT_NULL); |
| 116 | rt_device_close(device); |
| 117 | |
| 118 | return 0; |
| 119 | } |
| 120 | |
| 121 | static int serial_fops_ioctl(struct dfs_file *fd, int cmd, void *args) |
| 122 | { |
nothing calls this directly
no test coverage detected