| 2226 | }; |
| 2227 | |
| 2228 | static void |
| 2229 | ttyconsdev_init(void *unused __unused) |
| 2230 | { |
| 2231 | |
| 2232 | dev_console = make_dev_credf(MAKEDEV_ETERNAL, &ttyconsdev_cdevsw, 0, |
| 2233 | NULL, UID_ROOT, GID_WHEEL, 0600, "console"); |
| 2234 | } |
| 2235 | |
| 2236 | SYSINIT(tty, SI_SUB_DRIVERS, SI_ORDER_FIRST, ttyconsdev_init, NULL); |
| 2237 |
nothing calls this directly
no test coverage detected