| 1 | #ifndef _A_DEBUG_H_ |
| 2 | #define _A_DEBUG_H_ |
| 3 | /* |
| 4 | * Copyright (c) 2004-2006 Atheros Communications Inc. |
| 5 | * All rights reserved. |
| 6 | * |
| 7 | * Copyright (c) 2004-2007 Atheros Communications Inc. |
| 8 | * All rights reserved. |
| 9 | * |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License version 2 as |
| 13 | * published by the Free Software Foundation; |
| 14 | * |
| 15 | * Software distributed under the License is distributed on an "AS |
| 16 | * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or |
| 17 | * implied. See the License for the specific language governing |
| 18 | * rights and limitations under the License. |
| 19 | * |
| 20 | * |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #include <a_types.h> |
| 25 | #include <a_osapi.h> |
| 26 | |
| 27 | #define DBG_INFO 0x00000001 |
| 28 | #define DBG_ERROR 0x00000002 |
| 29 | #define DBG_WARNING 0x00000004 |
| 30 | #define DBG_SDIO 0x00000008 |
| 31 | #define DBG_HIF 0x00000010 |
| 32 | #define DBG_HTC 0x00000020 |
| 33 | #define DBG_WMI 0x00000040 |
| 34 | #define DBG_WMI2 0x00000080 |
| 35 | #define DBG_DRIVER 0x00000100 |
| 36 | |
| 37 | #define DBG_DEFAULTS (DBG_ERROR|DBG_WARNING) |
| 38 | |
| 39 | #include "../ar6000/debug_linux.h" |
| 40 | |
| 41 | #endif |
| 42 | |