mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
efivars: Fix check for CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE
commit ca0ba26fbb
upstream.
The 'CONFIG_' prefix is not implicit in IS_ENABLED().
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Cc: Seth Forshee <seth.forshee@canonical.com>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Cc: Rui Xiang <rui.xiang@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
026f0287cd
commit
9001ccbda1
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ MODULE_VERSION(EFIVARS_VERSION);
|
||||||
#define DUMP_NAME_LEN 52
|
#define DUMP_NAME_LEN 52
|
||||||
|
|
||||||
static bool efivars_pstore_disable =
|
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);
|
module_param_named(pstore_disable, efivars_pstore_disable, bool, 0644);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue