From owner-svn-src-head@FreeBSD.ORG Wed Jan 26 09:37:43 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D56A81065673; Wed, 26 Jan 2011 09:37:43 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C4DAC8FC0A; Wed, 26 Jan 2011 09:37:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p0Q9bht4070234; Wed, 26 Jan 2011 09:37:43 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p0Q9bhPY070232; Wed, 26 Jan 2011 09:37:43 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201101260937.p0Q9bhPY070232@svn.freebsd.org> From: Adrian Chadd Date: Wed, 26 Jan 2011 09:37:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r217878 - head/sys/dev/ath/ath_hal X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Jan 2011 09:37:43 -0000 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 };