From: Randy Dunlap Fix/change module_param permissions parameter from an init value to a permission value. Signed-off-by: Randy Dunlap Cc: Kyle McMartin Cc: Matthew Wilcox Signed-off-by: Andrew Morton --- drivers/parisc/sba_iommu.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/parisc/sba_iommu.c~parisc-fix-module_param-iommu-permission drivers/parisc/sba_iommu.c --- a/drivers/parisc/sba_iommu.c~parisc-fix-module_param-iommu-permission +++ a/drivers/parisc/sba_iommu.c @@ -109,7 +109,7 @@ static unsigned long piranha_bad_128k = #ifdef SBA_AGP_SUPPORT static int sba_reserve_agpgart = 1; -module_param(sba_reserve_agpgart, int, 1); +module_param(sba_reserve_agpgart, int, 0444); MODULE_PARM_DESC(sba_reserve_agpgart, "Reserve half of IO pdir as AGPGART"); #endif _