Use __free_reserved_page() to simplify the code in the others.

Signed-off-by: Xishi Qiu <[email protected]>
---
 drivers/video/acornfb.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/drivers/video/acornfb.c b/drivers/video/acornfb.c
index 6488a73..4ef302a 100644
--- a/drivers/video/acornfb.c
+++ b/drivers/video/acornfb.c
@@ -1205,9 +1205,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;
-- 
1.7.1


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to