Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ce4b3c55 authored by Jaswinder Singh Rajput's avatar Jaswinder Singh Rajput Committed by Rafael J. Wysocki
Browse files

PM/ACPI/x86: Fix sparse warning in arch/x86/kernel/acpi/sleep.c



One of the numbers in arch/x86/kernel/acpi/sleep.c is long, but it is
not annotated appropriately, so sparese warns about it.  Fix that.

[rjw: added the changelog.]

Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
parent e349792a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ int acpi_save_state_mem(void)
	initial_gs = per_cpu_offset(smp_processor_id());
#endif
	initial_code = (unsigned long)wakeup_long64;
	saved_magic = 0x123456789abcdef0;
       saved_magic = 0x123456789abcdef0L;
#endif /* CONFIG_64BIT */

	return 0;