diff options
author | 2020-07-07 12:40:30 +0000 | |
---|---|---|
committer | 2020-07-07 12:40:30 +0000 | |
commit | ae4c47650015c40b2c351cd157d3523f02c16fdc (patch) | |
tree | 43453eab078bcee7f3119850f8ae819d45a1b4c8 | |
parent | Update required firmware file path in iwx(4) man page. (diff) | |
download | wireguard-openbsd-ae4c47650015c40b2c351cd157d3523f02c16fdc.tar.xz wireguard-openbsd-ae4c47650015c40b2c351cd157d3523f02c16fdc.zip |
fix a copy pasto.
from netbsd if_ixl.c r1.39 by yamaguchi
-rw-r--r-- | sys/dev/pci/if_ixl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_ixl.c b/sys/dev/pci/if_ixl.c index d756e4baff0..ae8b8daf91f 100644 --- a/sys/dev/pci/if_ixl.c +++ b/sys/dev/pci/if_ixl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ixl.c,v 1.62 2020/07/07 02:45:58 dlg Exp $ */ +/* $OpenBSD: if_ixl.c,v 1.63 2020/07/07 12:40:30 dlg Exp $ */ /* * Copyright (c) 2013-2015, Intel Corporation @@ -3882,7 +3882,7 @@ ixl_get_phy_types(struct ixl_softc *sc, uint64_t *phy_types_ptr) int rv; if (ixl_dmamem_alloc(sc, &idm, IXL_AQ_BUFLEN, 0) != 0) { - printf("%s: unable to allocate switch config buffer\n", + printf("%s: unable to allocate phy abilities buffer\n", DEVNAME(sc)); return (-1); } |