1/*
2	Driver for Intel(R) PRO/Wireless 2100 devices.
3	Copyright (C) 2006 Michael Lotz <mmlr@mlotz.ch>
4	Released under the terms of the MIT license.
5*/
6
7#ifndef _DRIVER_H_
8#define _DRIVER_H_
9
10#include <SupportDefs.h>
11#include <KernelExport.h>
12
13#define	DRIVER_NAME			"ipw2100"
14#define	DRIVER_VERSION		1.0.0
15#define	DRIVER_DESCRIPTION	"Intel(R) PRO/Wireless 2100 Driver"
16
17#define MAX_INSTANCES		3
18#define VENDOR_ID_INTEL		0x8086
19
20//#define TRACE_IPW2100
21#ifdef TRACE_IPW2100
22#define TRACE(x)			dprintf x
23#define TRACE_ALWAYS(x)		dprintf x
24#else
25#define TRACE(x)			/* nothing */
26#define TRACE_ALWAYS(x)		dprintf x
27#endif
28
29#endif // _DRIVER_H_
30