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

Commit 4009819c authored by Michal Simek's avatar Michal Simek
Browse files

microblaze: Remove memset in free_init_pages



We don't need to do it.

Signed-off-by: default avatarMichal Simek <monstr@monstr.eu>
parent 6fa114e0
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -165,7 +165,6 @@ void free_init_pages(char *what, unsigned long begin, unsigned long end)
	for (addr = begin; addr < end; addr += PAGE_SIZE) {
		ClearPageReserved(virt_to_page(addr));
		init_page_count(virt_to_page(addr));
		memset((void *)addr, 0xcc, PAGE_SIZE);
		free_page(addr);
		totalram_pages++;
	}