Skip to content

Commit 480f0de

Browse files
Zhen Leirafaeljw
authored andcommitted
PM: hibernate: remove leading spaces before tabs
1) Run the following command to find and remove the leading spaces before tabs: $ find kernel/power/ -type f | xargs sed -r -i 's/^[ ]+\t/\t/' 2) Manually check and correct if necessary Signed-off-by: Zhen Lei <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 0346688 commit 480f0de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/power/snapshot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,7 @@ int create_basic_memory_bitmaps(void)
11461146
Free_second_object:
11471147
kfree(bm2);
11481148
Free_first_bitmap:
1149-
memory_bm_free(bm1, PG_UNSAFE_CLEAR);
1149+
memory_bm_free(bm1, PG_UNSAFE_CLEAR);
11501150
Free_first_object:
11511151
kfree(bm1);
11521152
return -ENOMEM;

0 commit comments

Comments
 (0)