Commit 392fe36b authored by Linus Torvalds's avatar Linus Torvalds

Change argument usage a bit to avoid compiler warning

parent cff6ab5e
......@@ -78,11 +78,11 @@ static inline void free_area_pmd(pgd_t * dir, unsigned long address, unsigned lo
} while (address < end);
}
void vmfree_area_pages(unsigned long address, unsigned long size)
void vmfree_area_pages(unsigned long start, unsigned long size)
{
pgd_t * dir;
unsigned long start = address;
unsigned long end = address + size;
unsigned long address = start;
unsigned long end = start + size;
dir = pgd_offset_k(address);
flush_cache_all();
......
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