Fix __set_fixmap() for STRICT_MM_TYPECHECKS
David Gibson
david at gibson.dropbear.id.au
Mon May 19 16:16:00 EST 2008
__set_fixmap() in pgtable_32.c currently fails to compile if
STRICT_MM_TYPECHECKS is defined. This patch fixes it.
Signed-off-by: David Gibson <david at gibson.dropbear.id.au>
Index: working-2.6/arch/powerpc/mm/pgtable_32.c
===================================================================
--- working-2.6.orig/arch/powerpc/mm/pgtable_32.c 2008-05-19 16:13:02.000000000 +1000
+++ working-2.6/arch/powerpc/mm/pgtable_32.c 2008-05-19 16:13:09.000000000 +1000
@@ -402,7 +402,7 @@ void __set_fixmap (enum fixed_addresses
return;
}
- map_page(address, phys, flags);
+ map_page(address, phys, pgprot_val(flags));
fixmaps++;
}
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
More information about the Linuxppc-dev
mailing list