The previous revision forgot to define fatal_if_no_DDB() when there is DDB.
This commit is contained in:
parent
6c4b1b79b1
commit
e5b58b781b
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user