summaryrefslogtreecommitdiffstats
path: root/fs/efivarfs
diff options
context:
space:
mode:
authorJohan Hovold <johan+linaro@kernel.org>2023-01-17 13:43:09 +0100
committerArd Biesheuvel <ardb@kernel.org>2023-01-17 16:14:36 +0100
commitade7fd908d710d0ab865c273df782c75528636ef (patch)
treea94107e950deb906bfe25bda4d890a4b764f4461 /fs/efivarfs
parent2a5b4ccf0de17e47e9ad13ee0fda9436d5de0a35 (diff)
downloadlinux-ade7fd908d710d0ab865c273df782c75528636ef.tar.gz
linux-ade7fd908d710d0ab865c273df782c75528636ef.tar.bz2
linux-ade7fd908d710d0ab865c273df782c75528636ef.zip
efi: efivars: drop kobject from efivars_register()
Since commit 0f5b2c69a4cb ("efi: vars: Remove deprecated 'efivars' sysfs interface") and the removal of the sysfs interface there are no users of the efivars kobject. Drop the kobject argument from efivars_register() and add a new efivar_is_available() helper in favour of the old efivars_kobject(). Note that the new helper uses the prefix 'efivar' (i.e. without an 's') for consistency with efivar_supports_writes() and the rest of the interface (except the registration functions). For the benefit of drivers with optional EFI support, also provide a dummy implementation of efivar_is_available(). Signed-off-by: Johan Hovold <johan+linaro@kernel.org> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'fs/efivarfs')
-rw-r--r--fs/efivarfs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/efivarfs/super.c b/fs/efivarfs/super.c
index 07e82e246666..f72c529c8ec3 100644
--- a/fs/efivarfs/super.c
+++ b/fs/efivarfs/super.c
@@ -256,7 +256,7 @@ static struct file_system_type efivarfs_type = {
static __init int efivarfs_init(void)
{
- if (!efivars_kobject())
+ if (!efivar_is_available())
return -ENODEV;
return register_filesystem(&efivarfs_type);