diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-29 15:25:33 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-31 18:50:40 +0000 |
| commit | 74a44a0bc8ab965d28d1ce804d3f0aead035faf0 (patch) | |
| tree | 846e37bd36b8c396171105f658462aab9155ce54 | |
| parent | 542f5985a8c2e7cccc9beb9801ec166082bb7e68 (diff) | |
vnic: Fix a typo in a device messsage
- s/interrups/interrupts/
MFC after: 5 days
| -rw-r--r-- | sys/dev/vnic/nicvf_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/vnic/nicvf_main.c b/sys/dev/vnic/nicvf_main.c index dd44e420c78f..59f7abeacdd5 100644 --- a/sys/dev/vnic/nicvf_main.c +++ b/sys/dev/vnic/nicvf_main.c @@ -1402,7 +1402,7 @@ nicvf_allocate_net_interrupts(struct nicvf *nic) /* MSI-X must be configured by now */ if (!nic->msix_enabled) { - device_printf(nic->dev, "Cannot alloacte queue interrups. " + device_printf(nic->dev, "Cannot alloacte queue interrupts. " "MSI-X interrupts disabled.\n"); return (ENXIO); } |
