summaryrefslogtreecommitdiff
path: root/v4l
diff options
context:
space:
mode:
Diffstat (limited to 'v4l')
-rw-r--r--v4l/compat.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/v4l/compat.h b/v4l/compat.h
index 4c7ee52a0..17ffc7830 100644
--- a/v4l/compat.h
+++ b/v4l/compat.h
@@ -204,6 +204,16 @@ static inline unsigned long vmalloc_to_pfn(void * vmalloc_addr)
return page_to_pfn(vmalloc_to_page(vmalloc_addr));
}
+static unsigned long kvirt_to_pa(unsigned long adr)
+{
+ unsigned long kva, ret;
+
+ kva = (unsigned long) page_address(vmalloc_to_page((void *)adr));
+ kva |= adr & (PAGE_SIZE-1); /* restore the offset */
+ ret = __pa(kva);
+ return ret;
+}
+
#ifndef wait_event_timeout
#define wait_event_timeout(wq, condition, timeout) \
({ \