From: Lee, Chun-Yi Date: Thu, 4 Sep 2014 07:13:39 +0000 (+0800) Subject: ACPI / RTC: Fix CMOS RTC opregion handler accesses to wrong addresses X-Git-Tag: v5.15~17258^2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9389f46e9782ea5e56fbd7b2e59ba7c08f3ba86b;p=platform%2Fkernel%2Flinux-starfive.git ACPI / RTC: Fix CMOS RTC opregion handler accesses to wrong addresses The value64 parameter is an u64 point that used to transfer the value for write to CMOS, or used to return the value that's read from CMOS. The value64 is an u64 point, so don't need get address again. It causes acpi_cmos_rtc_space_handler always return 0 to reader and didn't write expected value to CMOS. Signed-off-by: Lee, Chun-Yi Cc: 3.11+ # 3.11+ Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/acpi/acpi_cmos_rtc.c b/drivers/acpi/acpi_cmos_rtc.c index 2da8660..81dc750 100644 --- a/drivers/acpi/acpi_cmos_rtc.c +++ b/drivers/acpi/acpi_cmos_rtc.c @@ -33,7 +33,7 @@ acpi_cmos_rtc_space_handler(u32 function, acpi_physical_address address, void *handler_context, void *region_context) { int i; - u8 *value = (u8 *)&value64; + u8 *value = (u8 *)value64; if (address > 0xff || !value64) return AE_BAD_PARAMETER;