aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/module.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2010-06-05 13:17:35 -0400
committerRusty Russell <rusty@rustcorp.com.au>2010-06-04 21:47:36 -0400
commitc8e21ced08b39ef8dfe7236fb2a923a95f645262 (patch)
treeda34400daf3049814b459b9c8ba507d90abfe2bc /kernel/module.c
parent2c02dfe7fe3fba97a5665d329d039d2415ea5607 (diff)
module: fix kdb's illicit use of struct module_use.
Linus changed the structure, and luckily this didn't compile any more. Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Cc: Jason Wessel <jason.wessel@windriver.com> Cc: Martin Hicks <mort@sgi.com>
Diffstat (limited to 'kernel/module.c')
-rw-r--r--kernel/module.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/kernel/module.c b/kernel/module.c
index be18c3e34684..bbb1d812c79c 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -536,14 +536,6 @@ static void module_unload_init(struct module *mod)
536 mod->waiter = current; 536 mod->waiter = current;
537} 537}
538 538
539/* modules using other modules */
540struct module_use
541{
542 struct list_head source_list;
543 struct list_head target_list;
544 struct module *source, *target;
545};
546
547/* Does a already use b? */ 539/* Does a already use b? */
548static int already_uses(struct module *a, struct module *b) 540static int already_uses(struct module *a, struct module *b)
549{ 541{
@@ -589,8 +581,7 @@ static int add_module_usage(struct module *a, struct module *b)
589/* Module a uses b */ 581/* Module a uses b */
590int use_module(struct module *a, struct module *b) 582int use_module(struct module *a, struct module *b)
591{ 583{
592 struct module_use *use; 584 int err;
593 int no_warn, err;
594 585
595 if (b == NULL || already_uses(a, b)) return 1; 586 if (b == NULL || already_uses(a, b)) return 1;
596 587