|
From: Kenn H. <ke...@us...> - 2003-01-26 17:05:42
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel
In directory sc8-pr-cvs1:/tmp/cvs-serv3078/arch/vax/kernel
Modified Files:
setup.c
Log Message:
ROOT_DEV is now a dev_t, and is declared in <linux/root_dev.h>
Index: setup.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/setup.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- setup.c 24 Jan 2003 00:28:31 -0000 1.7
+++ setup.c 26 Jan 2003 17:05:38 -0000 1.8
@@ -16,6 +16,9 @@
#include <linux/string.h>
#include <linux/delay.h>
#include <linux/seq_file.h>
+#include <linux/major.h>
+#include <linux/kdev_t.h>
+#include <linux/root_dev.h>
#include <asm/rpb.h>
#include <asm/page.h>
@@ -163,7 +166,7 @@
SET_PAGE_DIR(current, swapper_pg_dir);
/* No root filesystem yet */
- ROOT_DEV = NODEV;
+ ROOT_DEV = Root_NFS;
/* Inserted by D.A. - 8 Jun 2001 - THIS IS NECESSARY
if not correct */
|