From owner-svn-src-head@FreeBSD.ORG Sun Jan 31 14:25:09 2010 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 8C5011065670; Sun, 31 Jan 2010 14:25:09 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7A8CC8FC16; Sun, 31 Jan 2010 14:25:09 +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 o0VEP9Ge049238; Sun, 31 Jan 2010 14:25:09 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o0VEP94M049236; Sun, 31 Jan 2010 14:25:09 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201001311425.o0VEP94M049236@svn.freebsd.org> From: Rui Paulo Date: Sun, 31 Jan 2010 14:25:09 +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: r203286 - head/sys/modules/ath 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: Sun, 31 Jan 2010 14:25:09 -0000 Author: rpaulo Date: Sun Jan 31 14:25:09 2010 New Revision: 203286 URL: http://svn.freebsd.org/changeset/base/203286 Log: Improve previous commit and add missing ar9280.c Modified: head/sys/modules/ath/Makefile Modified: head/sys/modules/ath/Makefile ============================================================================== --- head/sys/modules/ath/Makefile Sun Jan 31 13:39:08 2010 (r203285) +++ head/sys/modules/ath/Makefile Sun Jan 31 14:25:09 2010 (r203286) @@ -37,7 +37,7 @@ ATH_RATE?= sample # tx rate control alg KMOD= if_ath SRCS= if_ath.c if_ath_pci.c # NB: v3 eeprom support used by both AR5211 and AR5212; just include it -SRCS+= ah_osdep.c ah.c ah_regdomain.c ah_eeprom_v3.c ah_eeprom_v4k.c +SRCS+= ah_osdep.c ah.c ah_regdomain.c ah_eeprom_v3.c SRCS+= device_if.h bus_if.h pci_if.h opt_inet.h opt_ath.h opt_ah.h opt_wlan.h # @@ -82,14 +82,14 @@ SRCS+= ar5413.c # NB: 9160 depends on 5416 but 5416 does not require 9160 # .PATH: ${.CURDIR}/../../dev/ath/ath_hal/ar5416 -SRCS+= ah_eeprom_v14.c \ +SRCS+= ah_eeprom_v14.c ah_eeprom_v4k.c \ ar5416_ani.c ar5416_attach.c ar5416_beacon.c ar5416_cal.c \ ar5416_cal_iq.c ar5416_cal_adcgain.c ar5416_cal_adcdc.c \ ar5416_eeprom.c ar5416_gpio.c ar5416_interrupts.c ar5416_keycache.c \ ar5416_misc.c ar5416_phy.c ar5416_power.c ar5416_recv.c \ ar5416_reset.c ar5416_xmit.c SRCS+= ar9160_attach.c -SRCS+= ar9280_attach.c +SRCS+= ar9280.c ar9280_attach.c # RF backend for 5416 and 9160 SRCS+= ar2133.c