# HG changeset patch
# User kfraser@xxxxxxxxxxxxxxxxxxxxx
# Date 1173697387 0
# Node ID 94fcbb52bde24322a5998fa22a0786dd697f40b1
# Parent e39964673c6f8cae12cb35ce4fa585488c3e5305
Fix valid_phys_addr_range() prototype of xen /dev/mem.
The second argument is size_t, not size_t *.
Signed-off-by: Isaku Yamahata <yamahata@xxxxxxxxxxxxx>
---
linux-2.6-xen-sparse/drivers/xen/char/mem.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff -r e39964673c6f -r 94fcbb52bde2 linux-2.6-xen-sparse/drivers/xen/char/mem.c
--- a/linux-2.6-xen-sparse/drivers/xen/char/mem.c Mon Mar 12 11:00:44
2007 +0000
+++ b/linux-2.6-xen-sparse/drivers/xen/char/mem.c Mon Mar 12 11:03:07
2007 +0000
@@ -27,7 +27,7 @@
#include <asm/hypervisor.h>
#ifndef ARCH_HAS_VALID_PHYS_ADDR_RANGE
-static inline int valid_phys_addr_range(unsigned long addr, size_t *count)
+static inline int valid_phys_addr_range(unsigned long addr, size_t count)
{
return 1;
}
@@ -44,7 +44,7 @@ static ssize_t read_mem(struct file * fi
ssize_t read = 0, sz;
void __iomem *v;
- if (!valid_phys_addr_range(p, &count))
+ if (!valid_phys_addr_range(p, count))
return -EFAULT;
while (count > 0) {
@@ -95,7 +95,7 @@ static ssize_t write_mem(struct file * f
ssize_t written = 0, sz;
void __iomem *v;
- if (!valid_phys_addr_range(p, &count))
+ if (!valid_phys_addr_range(p, count))
return -EFAULT;
while (count > 0) {
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|