power: Fix sizeof(PAGE_SIZE) typo
Fix sizeof(PAGE_SIZE) typo. It should be just PAGE_SIZE for zeroing the swsusp_header. Signed-off-by: OGAWA Hirofumi <hogawa@miraclelinux.com> Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> Cc: Pavel Machek <pavel@ucw.cz> Cc: "Rafael J. Wysocki" <rjw@sisk.pl> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
c8511f9490
commit
6373da1fb7
@@ -584,7 +584,7 @@ int swsusp_check(void)
|
|||||||
resume_bdev = open_by_devnum(swsusp_resume_device, FMODE_READ);
|
resume_bdev = open_by_devnum(swsusp_resume_device, FMODE_READ);
|
||||||
if (!IS_ERR(resume_bdev)) {
|
if (!IS_ERR(resume_bdev)) {
|
||||||
set_blocksize(resume_bdev, PAGE_SIZE);
|
set_blocksize(resume_bdev, PAGE_SIZE);
|
||||||
memset(swsusp_header, 0, sizeof(PAGE_SIZE));
|
memset(swsusp_header, 0, PAGE_SIZE);
|
||||||
error = bio_read_page(swsusp_resume_block,
|
error = bio_read_page(swsusp_resume_block,
|
||||||
swsusp_header, NULL);
|
swsusp_header, NULL);
|
||||||
if (error)
|
if (error)
|
||||||
|
Reference in New Issue
Block a user