diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-10-13 01:08:24 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-10-13 01:08:24 +0300 |
commit | 9b4e40c8fe1e120fef93985de7ff6a97fe9e7dd3 (patch) | |
tree | e337504dc1e26bee83b451997adcf0446038bce3 /drivers/firmware/efi/rci2-table.c | |
parent | fcb45a28489c981bcdab510a838fcac5c21c07e2 (diff) | |
parent | be59d57f98065af0b8472f66a0a969207b168680 (diff) | |
download | linux-9b4e40c8fe1e120fef93985de7ff6a97fe9e7dd3.tar.xz |
Merge branch 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull EFI fixes from Ingo Molnar:
"Misc EFI fixes all across the map: CPER error report fixes, fixes to
TPM event log parsing, fix for a kexec hang, a Sparse fix and other
fixes"
* 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
efi/tpm: Fix sanity check of unsigned tbl_size being less than zero
efi/x86: Do not clean dummy variable in kexec path
efi: Make unexported efi_rci2_sysfs_init() static
efi/tpm: Only set 'efi_tpm_final_log_size' after successful event log parsing
efi/tpm: Don't traverse an event log with no events
efi/tpm: Don't access event->count when it isn't mapped
efivar/ssdt: Don't iterate over EFI vars if no SSDT override was specified
efi/cper: Fix endianness of PCIe class code
Diffstat (limited to 'drivers/firmware/efi/rci2-table.c')
-rw-r--r-- | drivers/firmware/efi/rci2-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/efi/rci2-table.c b/drivers/firmware/efi/rci2-table.c index 3e290f96620a..76b0c354a027 100644 --- a/drivers/firmware/efi/rci2-table.c +++ b/drivers/firmware/efi/rci2-table.c @@ -76,7 +76,7 @@ static u16 checksum(void) return chksum; } -int __init efi_rci2_sysfs_init(void) +static int __init efi_rci2_sysfs_init(void) { struct kobject *tables_kobj; int ret = -ENOMEM; |