From 55cc6271317d1e429774d1ad99aee6d1c31eff0a Mon Sep 17 00:00:00 2001 From: gwr Date: Mon, 27 Jan 1997 22:23:38 +0000 Subject: [PATCH] Let bus_mapin return void* --- sys/arch/sun3x/sun3x/autoconf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/sun3x/sun3x/autoconf.c b/sys/arch/sun3x/sun3x/autoconf.c index 8061344b811f..73b4000138a6 100644 --- a/sys/arch/sun3x/sun3x/autoconf.c +++ b/sys/arch/sun3x/sun3x/autoconf.c @@ -1,4 +1,4 @@ -/* $NetBSD: autoconf.c,v 1.4 1997/01/23 22:44:43 gwr Exp $ */ +/* $NetBSD: autoconf.c,v 1.5 1997/01/27 22:23:38 gwr Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -308,7 +308,7 @@ int bus_peek(bustype, paddr, sz) #endif -char * +void * bus_mapin(bustype, paddr, sz) int bustype, paddr, sz; { @@ -343,7 +343,7 @@ bus_mapin(bustype, paddr, sz) } while ((sz -= NBPG) > 0); #endif - return ((char*)retval); + return ((void*)retval); } int