From 5a2def3a5edf1910f0da5f97ecd938f5365a5538 Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Wed, 26 Jan 2011 09:37:43 +0000 Subject: [PATCH] * fix HAL_DEBUG_INTERRUPT to be a separate bit, it was overlapping with something else * add HAL_DEBUG_GPIO, for some GPIO related debugging I'm tinkering with at the moment. --- sys/dev/ath/ath_hal/ah_debug.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/dev/ath/ath_hal/ah_debug.h b/sys/dev/ath/ath_hal/ah_debug.h index 428a2a8f8b2..47b86888d06 100644 --- a/sys/dev/ath/ath_hal/ah_debug.h +++ b/sys/dev/ath/ath_hal/ah_debug.h @@ -42,7 +42,8 @@ enum { HAL_DEBUG_EEPROM = 0x00008000, HAL_DEBUG_BEACON = 0x00010000, /* beacon setup work */ HAL_DEBUG_POWER = 0x00020000, /* power management */ - HAL_DEBUG_INTERRUPT = 0x00000080, /* interrupt handling */ + HAL_DEBUG_GPIO = 0x00040000, /* GPIO debugging */ + HAL_DEBUG_INTERRUPT = 0x00080000, /* interrupt handling */ HAL_DEBUG_ANY = 0xffffffff };