Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

firmware_loader: Fix a typo ("syfs" -> "sysfs")

"sysfs" was misspelled in a comment and a log message.

Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Jonathan Neuschäfer and committed by
Greg Kroah-Hartman
bbabc3fb 3d378dc7

+3 -3
+3 -3
drivers/base/firmware_loader/fallback.c
··· 674 674 * 675 675 * This function is called if direct lookup for the firmware failed, it enables 676 676 * a fallback mechanism through userspace by exposing a sysfs loading 677 - * interface. Userspace is in charge of loading the firmware through the syfs 678 - * loading interface. This syfs fallback mechanism may be disabled completely 677 + * interface. Userspace is in charge of loading the firmware through the sysfs 678 + * loading interface. This sysfs fallback mechanism may be disabled completely 679 679 * on a system by setting the proc sysctl value ignore_sysfs_fallback to true. 680 680 * If this false we check if the internal API caller set the @FW_OPT_NOFALLBACK 681 681 * flag, if so it would also disable the fallback mechanism. A system may want ··· 693 693 return ret; 694 694 695 695 if (!(opt_flags & FW_OPT_NO_WARN)) 696 - dev_warn(device, "Falling back to syfs fallback for: %s\n", 696 + dev_warn(device, "Falling back to sysfs fallback for: %s\n", 697 697 name); 698 698 else 699 699 dev_dbg(device, "Falling back to sysfs fallback for: %s\n",