Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sparc64: Fix prototype warnings in hibernate.c

Fix the following warnings:
arch/sparc/power/hibernate.c:22:5: warning: no previous prototype for ‘pfn_is_nosave’
arch/sparc/power/hibernate.c:30:6: warning: no previous prototype for ‘save_processor_state’
arch/sparc/power/hibernate.c:35:6: warning: no previous prototype for ‘restore_processor_state’

The prototypes are available from linux/suspend.h so include that.

Link: https://lore.kernel.org/r/20240710094155.458731-5-andreas@gaisler.com
Signed-off-by: Andreas Larsson <andreas@gaisler.com>

+1
+1
arch/sparc/power/hibernate.c
··· 5 5 * Copyright (C) 2013 Kirill V Tkhai (tkhai@yandex.ru) 6 6 */ 7 7 8 + #include <linux/suspend.h> 8 9 #include <linux/mm.h> 9 10 10 11 #include <asm/hibernate.h>