From 7cd55062c0d793762e7fd62e7f5838ab9ce4ed14 Mon Sep 17 00:00:00 2001 From: aymeric Date: Sat, 4 Mar 2000 11:49:18 +0000 Subject: [PATCH] do as if bus_space_read_4() returned an int, although it just calls panic. --- sys/arch/amiga/include/bus.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/amiga/include/bus.h b/sys/arch/amiga/include/bus.h index 458ce8ba1f77..adf6029080c7 100644 --- a/sys/arch/amiga/include/bus.h +++ b/sys/arch/amiga/include/bus.h @@ -1,4 +1,4 @@ -/* $NetBSD: bus.h,v 1.14 2000/01/31 22:43:36 mhitch Exp $ */ +/* $NetBSD: bus.h,v 1.15 2000/03/04 11:49:18 aymeric Exp $ */ /* * Copyright (c) 1996 Leo Weppelman. All rights reserved. @@ -205,7 +205,7 @@ struct amiga_bus_space_methods { /* 4: Fake 32-bit macros */ #define bus_space_read_4(t, h, o) \ - panic("bus_space_read_4 not implemented") + (panic("bus_space_read_4 not implemented"), 0) #define bus_space_write_4(t, h, o, v) \ panic("bus_space_write_4 not implemented")