aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modutils/insmod.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c
index 5063be564..d98341e7b 100644
--- a/modutils/insmod.c
+++ b/modutils/insmod.c
@@ -296,7 +296,7 @@ extern int insmod_ng_main( int argc, char **argv);
296#ifndef MODUTILS_MODULE_H 296#ifndef MODUTILS_MODULE_H
297static const int MODUTILS_MODULE_H = 1; 297static const int MODUTILS_MODULE_H = 1;
298 298
299#ident "$Id: insmod.c,v 1.118 2004/05/26 11:38:46 andersen Exp $" 299#ident "$Id: insmod.c,v 1.119 2004/05/26 12:06:38 andersen Exp $"
300 300
301/* This file contains the structures used by the 2.0 and 2.1 kernels. 301/* This file contains the structures used by the 2.0 and 2.1 kernels.
302 We do not use the kernel headers directly because we do not wish 302 We do not use the kernel headers directly because we do not wish
@@ -517,7 +517,7 @@ int delete_module(const char *);
517#ifndef MODUTILS_OBJ_H 517#ifndef MODUTILS_OBJ_H
518static const int MODUTILS_OBJ_H = 1; 518static const int MODUTILS_OBJ_H = 1;
519 519
520#ident "$Id: insmod.c,v 1.118 2004/05/26 11:38:46 andersen Exp $" 520#ident "$Id: insmod.c,v 1.119 2004/05/26 12:06:38 andersen Exp $"
521 521
522/* The relocatable object is manipulated using elfin types. */ 522/* The relocatable object is manipulated using elfin types. */
523 523
@@ -1337,7 +1337,7 @@ arch_apply_relocation(struct obj_file *f,
1337 break; 1337 break;
1338#endif 1338#endif
1339 1339
1340#elif defined(__H8300H__) || defined(__H8300S__) 1340#if defined(__H8300H__) || defined(__H8300S__)
1341 case R_H8_DIR24R8: 1341 case R_H8_DIR24R8:
1342 loc = (ElfW(Addr) *)((ElfW(Addr))loc - 1); 1342 loc = (ElfW(Addr) *)((ElfW(Addr))loc - 1);
1343 *loc = (*loc & 0xff000000) | ((*loc & 0xffffff) + v); 1343 *loc = (*loc & 0xff000000) | ((*loc & 0xffffff) + v);