From: <ke...@us...> - 2003-10-25 15:29:17
|
Update of /cvsroot/linux-vax/kernel-2.4/init In directory sc8-pr-cvs1:/tmp/cvs-serv31989 Modified Files: main.c Log Message: Kaj-Michael Lang: This fixes vax device init, the call to vax_dev_init was lost in the latest kernel source merge. Index: main.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/init/main.c,v retrieving revision 1.1.1.4 retrieving revision 1.6 diff -u -d -r1.1.1.4 -r1.6 --- main.c 27 Sep 2003 11:18:32 -0000 1.1.1.4 +++ main.c 25 Oct 2003 15:23:25 -0000 1.6 @@ -105,6 +105,10 @@ extern void tc_init(void); #endif +#ifdef CONFIG_VAX +extern void vax_dev_init(void); +#endif + extern void ecard_init(void); #if defined(CONFIG_SYSVIPC) @@ -528,6 +532,10 @@ #ifdef CONFIG_TC tc_init(); #endif +#ifdef CONFIG_VAX + vax_dev_init(); +#endif + /* Networking initialization needs a process context */ sock_init(); |