| 180 | } |
| 181 | |
| 182 | static __inline void |
| 183 | ttydevsw_pktnotify(struct tty *tp, char event) |
| 184 | { |
| 185 | |
| 186 | tty_assert_locked(tp); |
| 187 | MPASS(!tty_gone(tp)); |
| 188 | |
| 189 | tp->t_devsw->tsw_pktnotify(tp, event); |
| 190 | } |
| 191 | |
| 192 | static __inline void |
| 193 | ttydevsw_free(struct tty *tp) |
no outgoing calls
no test coverage detected