Author: adrian
Date: Wed Jan 26 09:37:43 2011
New Revision: 217878
URL: http://svn.freebsd.org/changeset/base/217878

Log:
  * 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.

Modified:
  head/sys/dev/ath/ath_hal/ah_debug.h

Modified: head/sys/dev/ath/ath_hal/ah_debug.h
==============================================================================
--- head/sys/dev/ath/ath_hal/ah_debug.h Wed Jan 26 08:54:10 2011        
(r217877)
+++ head/sys/dev/ath/ath_hal/ah_debug.h Wed Jan 26 09:37:43 2011        
(r217878)
@@ -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
 };
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to