From 385c1943697e11e7f01fa40702304d09cc43863e Mon Sep 17 00:00:00 2001 From: mark Date: Wed, 6 Mar 1996 23:56:59 +0000 Subject: [PATCH] Added #ifndef guards round the timeout macros so values can be overridden in the config file. --- sys/arch/arm32/podulebus/if_ea.c | 7 +++---- sys/arch/arm32/podulebus/if_eb.c | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/sys/arch/arm32/podulebus/if_ea.c b/sys/arch/arm32/podulebus/if_ea.c index f47ca159e2df..8d8209fcfbcb 100644 --- a/sys/arch/arm32/podulebus/if_ea.c +++ b/sys/arch/arm32/podulebus/if_ea.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_ea.c,v 1.1 1996/01/31 23:25:37 mark Exp $ */ +/* $NetBSD: if_ea.c,v 1.2 1996/03/06 23:56:59 mark Exp $ */ /* * Copyright (c) 1995 Mark Brinicombe @@ -38,9 +38,6 @@ * Ether3 device driver * * Created : 08/07/95 - * Last updated : 31/12/95 - * - * $Id: if_ea.c,v 1.1 1996/01/31 23:25:37 mark Exp $ */ /* @@ -99,7 +96,9 @@ #define ETHER_MAX_LEN 1514 #define ETHER_ADDR_LEN 6 +#ifndef EA_TIMEOUT #define EA_TIMEOUT 60 +#endif /*#define EA_TX_DEBUG*/ /*#define EA_RX_DEBUG*/ diff --git a/sys/arch/arm32/podulebus/if_eb.c b/sys/arch/arm32/podulebus/if_eb.c index 56c51585f9ce..08c63d4c30cc 100644 --- a/sys/arch/arm32/podulebus/if_eb.c +++ b/sys/arch/arm32/podulebus/if_eb.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_eb.c,v 1.1 1996/01/31 23:25:43 mark Exp $ */ +/* $NetBSD: if_eb.c,v 1.2 1996/03/06 23:57:02 mark Exp $ */ /* * Copyright (c) 1995 Mark Brinicombe @@ -38,9 +38,6 @@ * EtherB device driver * * Created : 08/07/95 - * Last updated : 01/01/96 - * - * $Id: if_eb.c,v 1.1 1996/01/31 23:25:43 mark Exp $ */ /* @@ -100,7 +97,9 @@ #define ETHER_MAX_LEN 1514 #define ETHER_ADDR_LEN 6 +#ifndef EB_TIMEOUT #define EB_TIMEOUT 60 +#endif /*#define EB_TX_DEBUG*/ /*#define EB_RX_DEBUG*/