summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradrian <adrian@FreeBSD.org>2011-01-26 09:37:43 +0000
committeradrian <adrian@FreeBSD.org>2011-01-26 09:37:43 +0000
commitd82a9b5939737e6a81eac200a09df9c6f27deb37 (patch)
treee32567a70d564f0774b51867d5044b1c83660935
parent0658151d47e0a3c7975b8653fd61260cab21bf37 (diff)
downloadFreeBSD-src-d82a9b5939737e6a81eac200a09df9c6f27deb37.zip
FreeBSD-src-d82a9b5939737e6a81eac200a09df9c6f27deb37.tar.gz
* 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.
-rw-r--r--sys/dev/ath/ath_hal/ah_debug.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ath/ath_hal/ah_debug.h b/sys/dev/ath/ath_hal/ah_debug.h
index 428a2a8..47b8688 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
};
OpenPOWER on IntegriCloud