From: Andrew Morton Cc: Arnd Bergmann Cc: Benjamin Herrenschmidt Cc: Dave Airlie Cc: Hugh Dickins Cc: Paul Mackerras Cc: Rik van Riel Signed-off-by: Andrew Morton --- arch/powerpc/platforms/cell/spufs/file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN arch/powerpc/platforms/cell/spufs/file.c~spufs-use-the-new-vm_ops-access-fix arch/powerpc/platforms/cell/spufs/file.c --- a/arch/powerpc/platforms/cell/spufs/file.c~spufs-use-the-new-vm_ops-access-fix +++ a/arch/powerpc/platforms/cell/spufs/file.c @@ -288,7 +288,7 @@ spufs_mem_mmap_fault(struct vm_area_stru return VM_FAULT_NOPAGE; } -static int spufs_mem_mmep_access(struct vm_area_struct *vma, +static int spufs_mem_mmap_access(struct vm_area_struct *vma, unsigned long address, void *buf, int len, int write) { @@ -313,7 +313,7 @@ static int spufs_mem_mmep_access(struct static struct vm_operations_struct spufs_mem_mmap_vmops = { .fault = spufs_mem_mmap_fault, - .access = spufs_mem_mmep_access, + .access = spufs_mem_mmap_access, }; static int spufs_mem_mmap(struct file *file, struct vm_area_struct *vma) _