diff options
Diffstat (limited to 'arch/openrisc/kernel/module.c')
| -rw-r--r-- | arch/openrisc/kernel/module.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/openrisc/kernel/module.c b/arch/openrisc/kernel/module.c index 10ff50f0202..ef872ae4c87 100644 --- a/arch/openrisc/kernel/module.c +++ b/arch/openrisc/kernel/module.c @@ -47,12 +47,10 @@ int apply_relocate_add(Elf32_Shdr *sechdrs,  			*location = value;  			break;  		case R_OR32_CONST: -			location = (uint16_t *)location + 1; -			*((uint16_t *)location) = (uint16_t) (value); +			*((uint16_t *)location + 1) = value;  			break;  		case R_OR32_CONSTH: -			location = (uint16_t *)location + 1; -			*((uint16_t *)location) = (uint16_t) (value >> 16); +			*((uint16_t *)location + 1) = value >> 16;  			break;  		case R_OR32_JUMPTARG:  			value -= (uint32_t)location;  | 
