From b8e653bfbfeee7797e631d6d47cd9cddb7658e4b Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Mon, 2 Jun 2008 04:51:29 +0000 Subject: Reinstate CONFIG_CROSS_COMPILE_PREFIX --- modutils/insmod.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modutils/insmod.c') diff --git a/modutils/insmod.c b/modutils/insmod.c index 3a8201feb..f45a59465 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -452,7 +452,7 @@ enum { /* The system calls unchanged between 2.0 and 2.1. */ unsigned long create_module(const char *, size_t); -int delete_module(const char *); +int delete_module(const char *module, unsigned int flags); #endif /* module.h */ @@ -4141,18 +4141,18 @@ int insmod_main(int argc, char **argv) * now we can load them directly into the kernel memory */ if (!obj_load_progbits(fp, f, (char*)m_addr)) { - delete_module(m_name); + delete_module(m_name, 0); goto out; } #endif if (!obj_relocate(f, m_addr)) { - delete_module(m_name); + delete_module(m_name, 0); goto out; } if (!new_init_module(m_name, f, m_size)) { - delete_module(m_name); + delete_module(m_name, 0); goto out; } -- cgit v1.2.3