diff options
Diffstat (limited to 'arch/arm/common/sharpsl_param.c')
| -rw-r--r-- | arch/arm/common/sharpsl_param.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/arch/arm/common/sharpsl_param.c b/arch/arm/common/sharpsl_param.c index d56c932580eb..025f6ce38596 100644 --- a/arch/arm/common/sharpsl_param.c +++ b/arch/arm/common/sharpsl_param.c @@ -15,6 +15,7 @@  #include <linux/module.h>  #include <linux/string.h>  #include <asm/mach/sharpsl_param.h> +#include <asm/memory.h>  /*   * Certain hardware parameters determined at the time of device manufacture, @@ -25,8 +26,10 @@   */  #ifdef CONFIG_ARCH_SA1100  #define PARAM_BASE	0xe8ffc000 +#define param_start(x)	(void *)(x)  #else  #define PARAM_BASE	0xa0000a00 +#define param_start(x)	__va(x)  #endif  #define MAGIC_CHG(a,b,c,d) ( ( d << 24 ) | ( c << 16 )  | ( b << 8 ) | a ) @@ -41,7 +44,7 @@ EXPORT_SYMBOL(sharpsl_param);  void sharpsl_save_param(void)  { -	memcpy(&sharpsl_param, (void *)PARAM_BASE, sizeof(struct sharpsl_param_info)); +	memcpy(&sharpsl_param, param_start(PARAM_BASE), sizeof(struct sharpsl_param_info));  	if (sharpsl_param.comadj_keyword != COMADJ_MAGIC)  		sharpsl_param.comadj=-1; | 
