diff options
author | Guilherme G. Piccoli <gpiccoli@igalia.com> | 2022-10-07 01:42:11 +0300 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2022-10-17 23:14:10 +0300 |
commit | 893c5f1de620fb0134ddef37dfd850f6c639162b (patch) | |
tree | fc443c9dba705ab899680d5bf98a1995ad0f4560 /drivers/firmware/efi/efi-pstore.c | |
parent | 6a14f1982e6b476c84938c9ca011d258a6bba24d (diff) | |
download | linux-893c5f1de620fb0134ddef37dfd850f6c639162b.tar.xz |
efi: pstore: Follow convention for the efi-pstore backend name
For some reason, the efi-pstore backend name (exposed through the
pstore infrastructure) is hardcoded as "efi", whereas all the other
backends follow a kind of convention in using the module name.
Let's do it here as well, to make user's life easier (they might
use this info for unloading the module backend, for example).
Cc: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Guilherme G. Piccoli <gpiccoli@igalia.com>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/20221006224212.569555-8-gpiccoli@igalia.com
Diffstat (limited to 'drivers/firmware/efi/efi-pstore.c')
-rw-r--r-- | drivers/firmware/efi/efi-pstore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/efi/efi-pstore.c b/drivers/firmware/efi/efi-pstore.c index 3bddc152fcd4..97a9e84840a0 100644 --- a/drivers/firmware/efi/efi-pstore.c +++ b/drivers/firmware/efi/efi-pstore.c @@ -207,7 +207,7 @@ static int efi_pstore_erase(struct pstore_record *record) static struct pstore_info efi_pstore_info = { .owner = THIS_MODULE, - .name = "efi", + .name = KBUILD_MODNAME, .flags = PSTORE_FLAGS_DMESG, .open = efi_pstore_open, .close = efi_pstore_close, |