| 168 | } |
| 169 | |
| 170 | static void |
| 171 | audit_trigger_cdev_init(void *unused) |
| 172 | { |
| 173 | |
| 174 | /* Create the special device file. */ |
| 175 | audit_dev = make_dev(&audit_cdevsw, 0, UID_ROOT, GID_KMEM, 0600, |
| 176 | AUDITDEV_FILENAME); |
| 177 | } |
| 178 | |
| 179 | SYSINIT(audit_trigger_cdev_init, SI_SUB_DRIVERS, SI_ORDER_MIDDLE, |
| 180 | audit_trigger_cdev_init, NULL); |
nothing calls this directly
no test coverage detected