We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3a34dc commit 50e06ddCopy full SHA for 50e06dd
drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c
@@ -2285,18 +2285,18 @@ static int __init sxgbe_cmdline_opt(char *str)
2285
char *opt;
2286
2287
if (!str || !*str)
2288
- return -EINVAL;
+ return 1;
2289
while ((opt = strsep(&str, ",")) != NULL) {
2290
if (!strncmp(opt, "eee_timer:", 10)) {
2291
if (kstrtoint(opt + 10, 0, &eee_timer))
2292
goto err;
2293
}
2294
2295
- return 0;
2296
2297
err:
2298
pr_err("%s: ERROR broken module parameter conversion\n", __func__);
2299
2300
2301
2302
__setup("sxgbeeth=", sxgbe_cmdline_opt);
0 commit comments