Commit d24be85e authored by Tom Rini's avatar Tom Rini

page->virtual is gone by default, use page_address(page) now.

parent 91aec2e1
...@@ -157,6 +157,6 @@ size_t size, int direction) ...@@ -157,6 +157,6 @@ size_t size, int direction)
{ {
unsigned long start; unsigned long start;
start = (unsigned long)(page->virtual) + offset; start = page_address(page) + offset;
consistent_sync(start, size, direction); consistent_sync(start, size, direction);
} }
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