ARM: SAMSUNG: Fix build failure in PM CRC check code

This patch fixes build error that occurs on enabling the Samsung
specific PM CRC check code. Missed removing this reference of
s3c_sleep_save_phys during move to generic cpu suspend/resume
support.

Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>

authored by Abhilash Kesavan and committed by Kukjin Kim 96cfb97d dc5b9662

-6
-6
arch/arm/plat-samsung/pm-check.c
··· 164 164 */ 165 165 static u32 *s3c_pm_runcheck(struct resource *res, u32 *val) 166 166 { 167 - void *save_at = phys_to_virt(s3c_sleep_save_phys); 168 167 unsigned long addr; 169 168 unsigned long left; 170 169 void *stkpage; ··· 188 189 189 190 if (in_region(ptr, left, crcs, crc_size)) { 190 191 S3C_PMDBG("skipping %08lx, has crc block in\n", addr); 191 - goto skip_check; 192 - } 193 - 194 - if (in_region(ptr, left, save_at, 32*4 )) { 195 - S3C_PMDBG("skipping %08lx, has save block in\n", addr); 196 192 goto skip_check; 197 193 } 198 194