| 2198 | } |
| 2199 | |
| 2200 | static int |
| 2201 | ttyconsdev_write(struct cdev *dev, struct uio *uio, int ioflag) |
| 2202 | { |
| 2203 | |
| 2204 | log_console(uio); |
| 2205 | |
| 2206 | return (ttydev_write(dev, uio, ioflag)); |
| 2207 | } |
| 2208 | |
| 2209 | /* |
| 2210 | * /dev/console is a little different than normal TTY's. When opened, |
nothing calls this directly
no test coverage detected