Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca0ba26f authored by Ben Hutchings's avatar Ben Hutchings Committed by Matt Fleming
Browse files

efivars: Fix check for CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE



The 'CONFIG_' prefix is not implicit in IS_ENABLED().

Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
Cc: Seth Forshee <seth.forshee@canonical.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: default avatarMatt Fleming <matt.fleming@intel.com>
parent e971318b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ MODULE_VERSION(EFIVARS_VERSION);
#define GUID_LEN 36

static bool efivars_pstore_disable =
	IS_ENABLED(EFI_VARS_PSTORE_DEFAULT_DISABLE);
	IS_ENABLED(CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE);

module_param_named(pstore_disable, efivars_pstore_disable, bool, 0644);