From owner-cvs-src-old@FreeBSD.ORG Sun Mar 13 05:54:16 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D83A21065679 for ; Sun, 13 Mar 2011 05:54:16 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BDE568FC16 for ; Sun, 13 Mar 2011 05:54:16 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p2D5sGLa055692 for ; Sun, 13 Mar 2011 05:54:16 GMT (envelope-from adrian@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p2D5sGcf055691 for cvs-src-old@freebsd.org; Sun, 13 Mar 2011 05:54:16 GMT (envelope-from adrian@repoman.freebsd.org) Message-Id: <201103130554.p2D5sGcf055691@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to adrian@repoman.freebsd.org using -f From: Adrian Chadd Date: Sun, 13 Mar 2011 05:54:05 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ath/ath_hal ah.c ah_internal.h src/sys/dev/ath/ath_hal/ar5416 ar5416.h ar5416_reset.c src/sys/dev/ath/ath_hal/ar9002 ar9280_olc.c ar9285_reset.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Mar 2011 05:54:16 -0000 adrian 2011-03-13 05:54:05 UTC FreeBSD src repository Modified files: sys/dev/ath/ath_hal ah.c ah_internal.h sys/dev/ath/ath_hal/ar5416 ar5416.h ar5416_reset.c sys/dev/ath/ath_hal/ar9002 ar9280_olc.c ar9285_reset.c Log: SVN rev 219586 on 2011-03-13 05:54:05Z by adrian Move out some of the shared eeprom board value calculation routines into ah.c rather than duplicating them for the v14 (ar5416+) and v4k (ar9285) codebases. Further chipsets (eg the AR9287) have yet another EEPROM format which will use these routines to calculate things. Revision Changes Path 1.22 +112 -0 src/sys/dev/ath/ath_hal/ah.c 1.25 +10 -0 src/sys/dev/ath/ath_hal/ah_internal.h 1.24 +0 -5 src/sys/dev/ath/ath_hal/ar5416/ar5416.h 1.34 +9 -118 src/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c 1.4 +1 -1 src/sys/dev/ath/ath_hal/ar9002/ar9280_olc.c 1.6 +7 -23 src/sys/dev/ath/ath_hal/ar9002/ar9285_reset.c