Commit c39b4567 authored by David S. Miller's avatar David S. Miller

[SPARC64]: Fix one last cast-as-lvalue, present in uniprocessor builds.

parent 1d5b953d
......@@ -104,7 +104,7 @@ void check_pgt_cache(void)
if (page2)
page2->lru.next = page->lru.next;
else
(struct page *)pgd_quicklist = page->lru.next;
pgd_quicklist = (void *) page->lru.next;
pgd_cache_size -= 2;
__free_page(page);
if (page2)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment