aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/rtc
diff options
context:
space:
mode:
authorMaxim Korotkov <korotkov.maxim.s@gmail.com>2023-10-06 12:04:44 +0300
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2023-10-15 23:01:08 +0200
commitf5f4c982f7c8a8cffb2663078a40ecd7d82b534d (patch)
treec3f696c4341a07a0afd8693a873fa23409db2990 /drivers/rtc
parentrtc: omap: Use device_get_match_data() (diff)
downloadwireguard-linux-f5f4c982f7c8a8cffb2663078a40ecd7d82b534d.tar.xz
wireguard-linux-f5f4c982f7c8a8cffb2663078a40ecd7d82b534d.zip
rtc: efi: fixed typo in efi_procfs()
After the first check of the value of the "eft" variable it does not change, it is obvious that a copy-paste error was made here and the value of variable "alm" should be checked here. Found by Linux Verification Center (linuxtesting.org) with SVACE. Fixes: 501385f2a783 ("rtc: efi: add efi_procfs in efi_rtc_ops") Signed-off-by: Maxim Korotkov <korotkov.maxim.s@gmail.com> Link: https://lore.kernel.org/r/20231006090444.306729-1-korotkov.maxim.s@gmail.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/rtc-efi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-efi.c b/drivers/rtc/rtc-efi.c
index dc6b0f4a54e2..fa8bf82df948 100644
--- a/drivers/rtc/rtc-efi.c
+++ b/drivers/rtc/rtc-efi.c
@@ -227,7 +227,7 @@ static int efi_procfs(struct device *dev, struct seq_file *seq)
enabled == 1 ? "yes" : "no",
pending == 1 ? "yes" : "no");
- if (eft.timezone == EFI_UNSPECIFIED_TIMEZONE)
+ if (alm.timezone == EFI_UNSPECIFIED_TIMEZONE)
seq_puts(seq, "Timezone\t: unspecified\n");
else
/* XXX fixme: convert to string? */