]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/linux/unslung-kernel/ppp_mppe.patch
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / linux / unslung-kernel / ppp_mppe.patch
1 --- linux-2.4.22/drivers/net/ppp_mppe.c~        2005-03-05 00:36:26.000000000 +1030
2 +++ linux-2.4.22/drivers/net/ppp_mppe.c 2005-03-05 00:52:49.000000000 +1030
3 @@ -651,7 +651,7 @@
4   *************************************************************/
5  
6  static int __init
7 -init_module(void)
8 +ppp_mppe_init_module(void)
9  {  
10      int answer = ppp_register_compressor(&ppp_mppe);
11      if (answer == 0) {
12 @@ -662,7 +662,7 @@
13       
14  
15  void
16 -cleanup_module(void)
17 +ppp_mppe_cleanup_module(void)
18  {
19      if (MOD_IN_USE) {
20         printk (KERN_INFO "MPPE module busy, remove delayed\n");
21 @@ -672,6 +672,6 @@
22      }
23  }
24  
25 -module_init(init_module);
26 -module_exit(cleanup_module);
27 +module_init(ppp_mppe_init_module);
28 +module_exit(ppp_mppe_cleanup_module);
29