aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sbin/ifconfig/ifconfig.c18
1 files changed, 5 insertions, 13 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c
index 120207a6927e..462d543125c4 100644
--- a/sbin/ifconfig/ifconfig.c
+++ b/sbin/ifconfig/ifconfig.c
@@ -1719,19 +1719,11 @@ ifmaybeload(const char *name)
}
}
- /* Try to load the module. */
- if (kldload(ifkind) < 0) {
- switch (errno) {
- case ENOENT:
- /*
- * Ignore ENOENT, because ifconfig can't infer the
- * names of all drivers (eg mlx4en(4)).
- */
- break;
- default:
- err(1, "kldload(%s)", ifkind);
- }
- }
+ /*
+ * Try to load the module. But ignore failures, because ifconfig can't
+ * infer the names of all drivers (eg mlx4en(4)).
+ */
+ (void) kldload(ifkind);
}
static struct cmd basic_cmds[] = {