ARM: SAMSUNG: Fix warning 's3c_pm_show_resume_irqs' defined but not used

s3c_pm_show_resume_irqs() is used by some s3c_pm_arch_show_resume_irqs()
implementations, which get included through mach/pm-core.h. Add __maybe_unused
to silence warnings when it isn't used (e.g. on S3C64XX platforms).

Signed-off-by: Maurus Cuelenaere <mcuelenaere@gmail.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>

authored by Maurus Cuelenaere and committed by Kukjin Kim baab7307 96cfb97d

+3 -2
+3 -2
arch/arm/plat-samsung/pm.c
··· 214 214 * 215 215 * print any IRQs asserted at resume time (ie, we woke from) 216 216 */ 217 - static void s3c_pm_show_resume_irqs(int start, unsigned long which, 218 - unsigned long mask) 217 + static void __maybe_unused s3c_pm_show_resume_irqs(int start, 218 + unsigned long which, 219 + unsigned long mask) 219 220 { 220 221 int i; 221 222