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