]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[legal] Add FILE_LICENCE for ath9k driver headers
authorMarin Hannache <git@mareo.fr>
Sun, 14 Jul 2013 21:19:55 +0000 (23:19 +0200)
committerMichael Brown <mcb30@ipxe.org>
Sun, 14 Jul 2013 21:47:42 +0000 (23:47 +0200)
Signed-off-by: Marin Hannache <git@mareo.fr>
Modified-by: Michael Brown <mcb30@ipxe.org>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 files changed:
src/drivers/net/ath/ath.h
src/drivers/net/ath/ath9k/ani.h
src/drivers/net/ath/ath9k/ar9003_eeprom.h
src/drivers/net/ath/ath9k/ath9k.h
src/drivers/net/ath/ath9k/ath9k_ar9002_hw.c
src/drivers/net/ath/ath9k/ath9k_init.c
src/drivers/net/ath/ath9k/calib.h
src/drivers/net/ath/ath9k/common.h
src/drivers/net/ath/ath9k/eeprom.h
src/drivers/net/ath/ath9k/hw.h
src/drivers/net/ath/ath9k/mac.h
src/drivers/net/ath/reg.h
src/drivers/net/ath/regd.h

index 5a19a19cd6af182eaa1f8b7cbf995a2ed345a303..42ad59f781a8dcf73202857ab0ed0e3d45bce63a 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef ATH_H
 #define ATH_H
 
+FILE_LICENCE ( BSD2 );
+
 #include <unistd.h>
 #include <ipxe/net80211.h>
 
index 9a333b5f7eb1435a9dc49a6222c85ec774699e86..dbd4d4d5bc12dfeb57f638333ecd6f9d1c9b17dd 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef ANI_H
 #define ANI_H
 
+FILE_LICENCE ( BSD2 );
+
 #define HAL_PROCESS_ANI           0x00000001
 
 #define DO_ANI(ah) (((ah)->proc_phyerr & HAL_PROCESS_ANI) && ah->curchan)
index 393f2de52a9039e89fe394050c9730c0733e6f78..f03879236b8f8457d7eaf5b74ba7738817b8a847 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef AR9003_EEPROM_H
 #define AR9003_EEPROM_H
 
+FILE_LICENCE ( BSD2 );
+
 #define AR9300_EEP_VER               0xD000
 #define AR9300_EEP_VER_MINOR_MASK    0xFFF
 #define AR9300_EEP_MINOR_VER_1       0x1
index d2dce9b7b0b69c60612f7c5964e9b4d13ef678eb..36dc97e99b78133459cd8fc77c9fd6fb1f9f191e 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef ATH9K_H
 #define ATH9K_H
 
+FILE_LICENCE ( BSD2 );
+
 #include "common.h"
 
 /*
index cc4edece44cff0b45538599e09384d8d5dd239e1..85d0c7de67bd5755ddfad7402bcca129394fe3ef 100644 (file)
@@ -17,6 +17,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+FILE_LICENCE ( BSD2 );
+
 #include "hw.h"
 #include "ar5008_initvals.h"
 #include "ar9001_initvals.h"
index 93fbe7733d295731ee6b5d1df1ebd99787adefa8..03de7701ace2f7a75ba959abb4e0f9f95702550e 100644 (file)
@@ -17,6 +17,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+FILE_LICENCE ( BSD2 );
+
 #include <ipxe/malloc.h>
 #include <ipxe/pci_io.h>
 #include <ipxe/pci.h>
index 5bf50f4a6a50cf78338bc7be234f0461cd588d19..b811accf0bf69587f401052c9292cf6e4cb7fa6c 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef CALIB_H
 #define CALIB_H
 
+FILE_LICENCE ( BSD2 );
+
 #include "hw.h"
 
 #define AR_PHY_CCA_FILTERWINDOW_LENGTH_INIT     3
index 009f8036dc2a50c106f760dc0348acf3531f3689..0fe3b5be699dab8d7d2c40c58685f93b1fb27322 100644 (file)
@@ -17,6 +17,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+FILE_LICENCE ( BSD2 );
+
 #include "../ath.h"
 
 #include "hw.h"
index b451ebd70f6dbb48201ea4ad8e84b40918d75fae..8a48d6e5fcdc723d0dd6a89d658a83402f0abffe 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef EEPROM_H
 #define EEPROM_H
 
+FILE_LICENCE ( BSD2 );
+
 #define AR_EEPROM_MODAL_SPURS   5
 
 #include "../ath.h"
index c10df3883487f6ae3d7fd0bb080b0a61047ae17b..051074691bf8b30a222d084df2eb293ab71fd07d 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef HW_H
 #define HW_H
 
+FILE_LICENCE ( BSD2 );
+
 #include <errno.h>
 
 #include "mac.h"
index 5899230e03b158afa3154e731dbefe3e10e4044b..0c0a759487450881430ec7786a6fc10d8c39e74e 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef MAC_H
 #define MAC_H
 
+FILE_LICENCE ( BSD2 );
+
 #include <unistd.h>
 
 #define RXSTATUS_RATE(ah, ads) (AR_SREV_5416_20_OR_LATER(ah) ?         \
index 484a8f1cb147ee3ab07fd30e6119a65869516ff3..7982f434415479207f29e93d5575d6b341e9daa1 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef ATH_REGISTERS_H
 #define ATH_REGISTERS_H
 
+FILE_LICENCE ( BSD2 );
+
 #define AR_MIBC                        0x0040
 #define AR_MIBC_COW            0x00000001
 #define AR_MIBC_FMC            0x00000002
index 6954c5f3646751b9d9a59969539127784e84c7e1..fd09a0c8dde112aa559aa104a35e75df8e599365 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef REGD_H
 #define REGD_H
 
+FILE_LICENCE ( BSD2 );
+
 #include "ath.h"
 
 enum ctl_group {