drivers/video/acornfb.c: use __free_reserved_page() to simplify the code
authorXishi Qiu <[email protected]>
Tue, 12 Nov 2013 23:07:14 +0000 (15:07 -0800)
committerLinus Torvalds <[email protected]>
Wed, 13 Nov 2013 03:09:03 +0000 (12:09 +0900)
Use __free_reserved_page() to simplify the code in the others.

Signed-off-by: Xishi Qiu <[email protected]>
Cc: Jean-Christophe Plagniol-Villard <[email protected]>
Cc: Tomi Valkeinen <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/video/acornfb.c

index 7e8346ec9cdc32f1a04e0c493e4d859d71efa189..a305caea58eea717fdffaac4c5364552673ad5ae 100644 (file)
@@ -949,9 +949,7 @@ free_unused_pages(unsigned int virtual_start, unsigned int virtual_end)
                 * the page.
                 */
                page = virt_to_page(virtual_start);
-               ClearPageReserved(page);
-               init_page_count(page);
-               free_page(virtual_start);
+               __free_reserved_page(page);
 
                virtual_start += PAGE_SIZE;
                mb_freed += PAGE_SIZE / 1024;