The previous revision forgot to define fatal_if_no_DDB() when there is DDB.

This commit is contained in:
Bruce Evans 1994-11-16 02:45:36 +00:00
parent 6c4b1b79b1
commit e5b58b781b
3 changed files with 16 additions and 6 deletions

View File

@ -14,7 +14,7 @@
*
* commenced: Sun Sep 27 18:14:01 PDT 1992
*
* $Id: aha1742.c,v 1.24 1994/10/23 21:27:05 wollman Exp $
* $Id: aha1742.c,v 1.25 1994/11/15 14:53:09 bde Exp $
*/
#include <sys/types.h>
@ -39,8 +39,12 @@
/* */
#if defined(KERNEL) && !defined(DDB)
#ifdef KERNEL
# ifdef DDB
#define fatal_if_no_DDB()
# else
#define fatal_if_no_DDB() panic("panic for historical reasons")
# endif
#endif
typedef unsigned long int physaddr;

View File

@ -14,7 +14,7 @@
*
* commenced: Sun Sep 27 18:14:01 PDT 1992
*
* $Id: aha1742.c,v 1.24 1994/10/23 21:27:05 wollman Exp $
* $Id: aha1742.c,v 1.25 1994/11/15 14:53:09 bde Exp $
*/
#include <sys/types.h>
@ -39,8 +39,12 @@
/* */
#if defined(KERNEL) && !defined(DDB)
#ifdef KERNEL
# ifdef DDB
#define fatal_if_no_DDB()
# else
#define fatal_if_no_DDB() panic("panic for historical reasons")
# endif
#endif
typedef unsigned long int physaddr;

View File

@ -31,7 +31,7 @@
*/
/*
* $Id: aic6360.c,v 1.3 1994/10/23 21:27:07 wollman Exp $
* $Id: aic6360.c,v 1.4 1994/11/15 14:54:13 bde Exp $
*
* Acknowledgements: Many of the algorithms used in this driver are
* inspired by the work of Julian Elischer (julian@tfs.com) and
@ -494,7 +494,9 @@
#if defined(KERNEL) && !defined(DDB)
#ifdef DDB
#define fatal_if_no_DDB()
#else
#define fatal_if_no_DDB() panic("panic for historical reasons")
#endif