Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 26 Jan 2011 09:37:43 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r217878 - head/sys/dev/ath/ath_hal
Message-ID:  <201101260937.p0Q9bhPY070232@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201101260937.p0Q9bhPY070232>