Update of /cvsroot/linux-mips/linux/drivers/video
In directory usw-pr-cvs1:/tmp/cvs-serv14145
Modified Files:
fbmem.c pmag-ba-fb.c pmagb-b-fb.c
Log Message:
Remove empty *_setup() functions.
Index: fbmem.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/drivers/video/fbmem.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** fbmem.c 2001/09/06 16:57:32 1.5
--- fbmem.c 2001/09/13 17:05:53 1.6
***************
*** 312,323 ****
#ifdef CONFIG_FB_PMAG_BA
! { "pmagbafb", pmagbafb_init, pmagbafb_setup },
#endif
#ifdef CONFIG_FB_PMAGB_B
! { "pmagbbfb", pmagbbfb_init, pmagbbfb_setup },
#endif
#ifdef CONFIG_FB_MAXINE
! { "maxinefb", maxinefb_init, NULL },
#endif
--- 312,323 ----
#ifdef CONFIG_FB_PMAG_BA
! { "pmagbafb", pmagbafb_init, NULL },
#endif
#ifdef CONFIG_FB_PMAGB_B
! { "pmagbbfb", pmagbbfb_init, NULL },
#endif
#ifdef CONFIG_FB_MAXINE
! { "maxinefb", maxinefb_init, NULL },
#endif
Index: pmag-ba-fb.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/drivers/video/pmag-ba-fb.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** pmag-ba-fb.c 2001/09/06 17:00:28 1.2
--- pmag-ba-fb.c 2001/09/13 17:05:53 1.3
***************
*** 425,431 ****
}
}
-
- int __init pmagbafb_setup(char *options)
- {
- return 0;
- }
--- 425,426 ----
Index: pmagb-b-fb.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/drivers/video/pmagb-b-fb.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** pmagb-b-fb.c 2001/09/06 17:00:28 1.2
--- pmagb-b-fb.c 2001/09/13 17:05:53 1.3
***************
*** 428,434 ****
}
}
-
- int __init pmagbbfb_setup(char *options)
- {
- return 0;
- }
--- 428,429 ----
|