From 5e28d99a64d6917ebf5b46805d2866129fe697d2 Mon Sep 17 00:00:00 2001 From: briggs Date: Tue, 1 Jun 1999 03:24:25 +0000 Subject: [PATCH] Add define for another ethernet card (Nuvolink) Wrap nubus_scan_slot() prototype in #ifdef DEBUG. --- sys/arch/mac68k/nubus/nubus.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys/arch/mac68k/nubus/nubus.h b/sys/arch/mac68k/nubus/nubus.h index f52cab6e7220..d3484252f696 100644 --- a/sys/arch/mac68k/nubus/nubus.h +++ b/sys/arch/mac68k/nubus/nubus.h @@ -1,4 +1,4 @@ -/* $NetBSD: nubus.h,v 1.45 1999/05/30 21:43:19 briggs Exp $ */ +/* $NetBSD: nubus.h,v 1.46 1999/06/01 03:24:25 briggs Exp $ */ /* * Copyright (c) 1995 Allen Briggs. All rights reserved. @@ -98,6 +98,7 @@ #define NUBUS_DRHW_INTERLAN 0x0100 #define NUBUS_DRHW_KINETICS 0x0106 #define NUBUS_DRHW_CABLETRON 0x0109 +#define NUBUS_DRHW_NUVOLINK 0x010B #define NUBUS_DRHW_ASANTE_LC 0x010F #define NUBUS_DRHW_SONIC 0x0110 #define NUBUS_DRHW_TECHWORKS 0x0112 @@ -299,4 +300,6 @@ char *nubus_get_vendor __P((bus_space_tag_t, bus_space_handle_t, nubus_slot *slot, int rsrc)); char *nubus_get_card_name __P((bus_space_tag_t, bus_space_handle_t, nubus_slot *slot)); +#ifdef DEBUG void nubus_scan_slot __P((bus_space_tag_t, int)); +#endif