Add a call to ip1x_init().

This commit is contained in:
sekiya 2004-01-13 05:51:07 +00:00
parent a72de90260
commit 8507d232d3
1 changed files with 13 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.72 2004/01/12 12:32:00 sekiya Exp $ */
/* $NetBSD: machdep.c,v 1.73 2004/01/13 05:51:07 sekiya Exp $ */
/*
* Copyright (c) 2000 Soren S. Jorvang
@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.72 2004/01/12 12:32:00 sekiya Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.73 2004/01/13 05:51:07 sekiya Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@ -143,6 +143,10 @@ u_int32_t clockmask;
phys_ram_seg_t mem_clusters[VM_PHYSSEG_MAX];
int mem_cluster_cnt;
#if defined(IP1X)
void ip1x_init(void);
#endif
#if defined(IP2X)
void ip2x_init(void);
extern void ip22_sdcache_disable(void);
@ -383,6 +387,13 @@ mach_init(argc, argv, magic, btinfo)
#endif
switch (mach_type) {
case MACH_SGI_IP12:
#if defined(IP1X)
ip1x_init();
#else
unconfigured_system_type(mach_type);
#endif
break;
case MACH_SGI_IP20:
case MACH_SGI_IP22:
#if defined(IP2X)