1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

PCCARD support safety belts.

Don't allow people to use the 'dedicated' drivers at the same time as
the generic support code, as it can cause all sorts of problems
including kernel crashes.

[ definite 2.2 material ]
This commit is contained in:
Nate Williams 1996-12-21 17:53:39 +00:00
parent 544d046f79
commit e5328857de
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=20749
2 changed files with 16 additions and 2 deletions

View File

@ -47,9 +47,16 @@
*/
/*
* $Id: if_ze.c,v 1.33 1996/08/06 21:14:11 phk Exp $
* $Id: if_ze.c,v 1.34 1996/12/13 21:28:24 wollman Exp $
*/
/* XXX - Don't mix different PCCARD support code */
#include "pcic.h"
#include "crd.h"
#if NCRD > 0 || NPCIC > 0
#error Dedicated PCMCIA drivers and generic PCMCIA support can't be mixed
#endif
#include "ze.h"
#if NZE > 0
#include "bpfilter.h"

View File

@ -34,7 +34,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* From: if_ep.c,v 1.9 1994/01/25 10:46:29 deraadt Exp $
* $Id: if_zp.c,v 1.27 1996/11/11 17:11:08 bde Exp $
* $Id: if_zp.c,v 1.28 1996/12/13 21:28:25 wollman Exp $
*/
/*-
* TODO:
@ -100,6 +100,13 @@
* ETO, Toshihisa <eto@osl.fujitsu.co.jp>
*/
/* XXX - Don't mix different PCCARD support code */
#include "pcic.h"
#include "crd.h"
#if NCRD > 0 || NPCIC > 0
#error Dedicated PCMCIA drivers and generic PCMCIA support can't be mixed
#endif
#include "zp.h"
#include "bpfilter.h"