[PATCH 2/2] efirtc: add efi_enabled check in efi_rtc_init

From: Geliang Tang
Date: Mon Nov 02 2015 - 09:50:18 EST


Add efi_enabled check in efi_rtc_init() to make sure that efi is enabled.

Signed-off-by: Geliang Tang <geliangtang@xxxxxxx>
---
drivers/char/efirtc.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/drivers/char/efirtc.c b/drivers/char/efirtc.c
index 5323d8c..80058bd 100644
--- a/drivers/char/efirtc.c
+++ b/drivers/char/efirtc.c
@@ -378,6 +378,9 @@ efi_rtc_init(void)
int ret;
struct proc_dir_entry *dir;

+ if (!efi_enabled(EFI_RUNTIME_SERVICES))
+ return 0;
+
printk(KERN_INFO "EFI Time Services Driver v%s\n", EFI_RTC_VERSION);

ret = misc_register(&efi_rtc_dev);
--
2.4.3


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/