Commit 2cf9e278 authored by Johan Hovold's avatar Johan Hovold Committed by Ard Biesheuvel

efi: efivars: make efivar_supports_writes() return bool

For consistency with the new efivar_is_available() function, change the
return type of efivar_supports_writes() to bool.
Signed-off-by: default avatarJohan Hovold <johan+linaro@kernel.org>
Signed-off-by: default avatarArd Biesheuvel <ardb@kernel.org>
parent ade7fd90
......@@ -110,7 +110,7 @@ int efivars_unregister(struct efivars *efivars)
}
EXPORT_SYMBOL_GPL(efivars_unregister);
int efivar_supports_writes(void)
bool efivar_supports_writes(void)
{
return __efivars && __efivars->ops->set_variable;
}
......
......@@ -1061,7 +1061,7 @@ bool efivar_is_available(void);
static inline bool efivar_is_available(void) { return false; }
#endif
int efivar_supports_writes(void);
bool efivar_supports_writes(void);
int efivar_lock(void);
int efivar_trylock(void);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment