Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/boot
In directory usw-pr-cvs1:/tmp/cvs-serv24125
Modified Files:
startup.c
Log Message:
Compilation warnings removed.
Index: startup.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/boot/startup.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- startup.c 2001/08/19 10:34:42 1.1
+++ startup.c 2001/09/11 19:27:57 1.2
@@ -21,6 +21,7 @@
unsigned int rpb_size = sizeof(struct rpb_struct);
char *vax_linux_banner="Linux/VAX (lin...@mi...)\n";
extern void start_kernel(void);
+extern void guard_int_stack(void); /* arch/vax/kernel/interrupt.c */
/* This is a transitionary function. When things are finally sorted
* the only tasks this function will perform will relate to the interaction
@@ -83,10 +84,10 @@
printk("CPU type: %s, SID: %08x\n", mv->cpu_type_str(), vax_cpu.sid);
- printk("VM: mapped physical from %x to %x, iomap from %x\n", PAGE_OFFSET, PAGE_OFFSET+(max_hwpfn*512), IOMAP_START);
- printk("VM: vmalloc from %x to %x\n", VMALLOC_START, VMALLOC_END);
- printk("VM: ptemap from %x to %x for %d processes\n",TASKPTE_START, TASKPTE_END,TASK_MAXUPRC);
- printk("calling start_kernel...\n");
+ printk("VM: mapped physical from %x to %x, iomap from %lx\n", PAGE_OFFSET, PAGE_OFFSET+(max_hwpfn*512), IOMAP_START);
+ printk("VM: vmalloc from %lx to %lx\n", VMALLOC_START, VMALLOC_END);
+ printk("VM: ptemap from %lx to %lx for %d processes\n",TASKPTE_START, TASKPTE_END,TASK_MAXUPRC);
+ printk("calling start_kernel...\n\n");
start_kernel();
}
|