1 | /* $NetBSD: opt_ah.h,v 1.2 2011/02/20 03:55:18 jmcneill Exp $ */ |
2 | |
3 | /*- |
4 | * Copyright (c) 2008 The NetBSD Foundation, Inc. |
5 | * All rights reserved. |
6 | * |
7 | * Redistribution and use in source and binary forms, with or without |
8 | * modification, are permitted provided that the following conditions |
9 | * are met: |
10 | * 1. Redistributions of source code must retain the above copyright |
11 | * notice, this list of conditions and the following disclaimer. |
12 | * 2. Redistributions in binary form must reproduce the above copyright |
13 | * notice, this list of conditions and the following disclaimer in the |
14 | * documentation and/or other materials provided with the distribution. |
15 | * |
16 | * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
17 | * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
18 | * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
19 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
20 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
26 | * POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
28 | #ifndef OPT_AH_H |
29 | #define OPT_AH_H |
30 | |
31 | #ifdef _KERNEL_OPT |
32 | #include "opt_athhal.h" |
33 | #endif |
34 | |
35 | #ifdef ATHHAL_ASSERT |
36 | #define AH_ASSERT 1 |
37 | #endif |
38 | |
39 | #ifdef ATHHAL_DEBUG |
40 | #define AH_DEBUG 1 |
41 | #endif |
42 | |
43 | #ifdef ATHHAL_DEBUG_ALQ |
44 | #define AH_DEBUG_ALQ 1 |
45 | #endif |
46 | |
47 | #ifdef ATHHAL_AR5210 |
48 | #define AH_SUPPORT_5210 1 |
49 | #endif |
50 | |
51 | #ifdef ATHHAL_AR5211 |
52 | #define AH_SUPPORT_5211 1 |
53 | #endif |
54 | |
55 | #ifdef ATHHAL_AR5212 |
56 | #define AH_SUPPORT_5212 1 |
57 | #endif |
58 | |
59 | #ifdef ATHHAL_AR5311 |
60 | #define AH_SUPPORT_5311 1 |
61 | #endif |
62 | |
63 | #ifdef ATHHAL_AR5312 |
64 | #define AH_SUPPORT_AR5312 1 |
65 | #endif |
66 | |
67 | #ifdef ATHHAL_AR2316 |
68 | #define AH_SUPPORT_2316 1 |
69 | #endif |
70 | |
71 | #ifdef ATHHAL_AR2317 |
72 | #define AH_SUPPORT_2317 1 |
73 | #endif |
74 | |
75 | #ifdef ATHHAL_AR5416 |
76 | #define AH_SUPPORT_AR5416 1 |
77 | #endif |
78 | |
79 | #ifdef ATHHAL_AR9280 |
80 | #define AH_SUPPORT_AR9280 1 |
81 | #endif |
82 | |
83 | #if defined(ATHHAL_RF2316) || \ |
84 | defined(ATHHAL_RF2317) || \ |
85 | defined(ATHHAL_RF2413) || \ |
86 | defined(ATHHAL_RF2425) || \ |
87 | defined(ATHHAL_RF5111) || \ |
88 | defined(ATHHAL_RF5112) || \ |
89 | defined(ATHHAL_RF5413) |
90 | #define AH_HAS_RF |
91 | #endif |
92 | |
93 | #endif /* OPT_AH_H */ |
94 | |