From: Kenn H. <ke...@us...> - 2003-01-23 22:54:52
|
Update of /cvsroot/linux-vax/kernel-2.5/init In directory sc8-pr-cvs1:/tmp/cvs-serv12495/init Modified Files: main.c Log Message: We're not calling vax_dev_init() directly any more. (This brings main.c back to identity with the Linus sources, so I'll follow this checkin with a revert to vendor branch.) Index: main.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/init/main.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- main.c 14 Jan 2003 23:55:18 -0000 1.12 +++ main.c 23 Jan 2003 22:54:49 -0000 1.13 @@ -51,7 +51,7 @@ * To avoid associated bogus bug reports, we flatly refuse to compile * with a gcc that is known to be too old from the very beginning. */ -#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 95) +#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 91) #error Sorry, your GCC is too old. It builds incorrect kernels. #endif @@ -75,10 +75,6 @@ #ifdef CONFIG_TC extern void tc_init(void); -#endif - -#ifdef CONFIG_VAX -extern void vax_dev_init(void); #endif #if defined(CONFIG_SYSVIPC) |