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

Commit 96cfb97d authored by Abhilash Kesavan's avatar Abhilash Kesavan Committed by Kukjin Kim
Browse files

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: default avatarAbhilash Kesavan <a.kesavan@samsung.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent dc5b9662
Loading
Loading
Loading
Loading
+0 −6
Original line number Original line Diff line number Diff line
@@ -164,7 +164,6 @@ static inline int in_region(void *ptr, int size, void *what, size_t whatsz)
 */
 */
static u32 *s3c_pm_runcheck(struct resource *res, u32 *val)
static u32 *s3c_pm_runcheck(struct resource *res, u32 *val)
{
{
	void *save_at = phys_to_virt(s3c_sleep_save_phys);
	unsigned long addr;
	unsigned long addr;
	unsigned long left;
	unsigned long left;
	void *stkpage;
	void *stkpage;
@@ -192,11 +191,6 @@ static u32 *s3c_pm_runcheck(struct resource *res, u32 *val)
			goto skip_check;
			goto skip_check;
		}
		}


		if (in_region(ptr, left, save_at, 32*4 )) {
			S3C_PMDBG("skipping %08lx, has save block in\n", addr);
			goto skip_check;
		}

		/* calculate and check the checksum */
		/* calculate and check the checksum */


		calc = crc32_le(~0, ptr, left);
		calc = crc32_le(~0, ptr, left);