Skip to content

Commit 7106654

Browse files
Saravana Kannangregkh
authored andcommitted
driver core: Set fw_devlink.strict=1 by default
Now that deferred_probe_timeout is non-zero by default, fw_devlink will never permanently block the probing of devices. It'll try its best to probe the devices in the right order and then finally let devices probe even if their suppliers don't have any drivers. Tested-by: Geert Uytterhoeven <[email protected]> Signed-off-by: Saravana Kannan <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent f516d01 commit 7106654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/base/core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1613,7 +1613,7 @@ static int __init fw_devlink_setup(char *arg)
16131613
}
16141614
early_param("fw_devlink", fw_devlink_setup);
16151615

1616-
static bool fw_devlink_strict;
1616+
static bool fw_devlink_strict = true;
16171617
static int __init fw_devlink_strict_setup(char *arg)
16181618
{
16191619
return strtobool(arg, &fw_devlink_strict);

0 commit comments

Comments
 (0)