| 194 | SYSINIT(intr_irq_init, SI_SUB_INTR, SI_ORDER_FIRST, intr_irq_init, NULL); |
| 195 | |
| 196 | static void |
| 197 | intrcnt_setname(const char *name, int index) |
| 198 | { |
| 199 | |
| 200 | snprintf(intrnames + INTRNAME_LEN * index, INTRNAME_LEN, "%-*s", |
| 201 | INTRNAME_LEN - 1, name); |
| 202 | } |
| 203 | |
| 204 | /* |
| 205 | * Update name for interrupt source with interrupt event. |
no test coverage detected