Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 264060
b: refs/heads/master
c: 97c7de0
h: refs/heads/master
v: v3
  • Loading branch information
Lin Ming authored and David S. Miller committed Sep 20, 2011
1 parent 42b6365 commit 1dd6454
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 710778ff878a06654175863db133293007d45aee
refs/heads/master: 97c7de055713afddf4218f19c896b5185555da15
8 changes: 7 additions & 1 deletion trunk/drivers/net/netconsole.c
Original file line number Diff line number Diff line change
Expand Up @@ -799,5 +799,11 @@ static void __exit cleanup_netconsole(void)
}
}

module_init(init_netconsole);
/*
* Use late_initcall to ensure netconsole is
* initialized after network device driver if built-in.
*
* late_initcall() and module_init() are identical if built as module.
*/
late_initcall(init_netconsole);
module_exit(cleanup_netconsole);

0 comments on commit 1dd6454

Please sign in to comment.