diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-01-02 18:54:33 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-01-02 18:54:33 +0000 |
commit | 3fc9a88fa180ec992cb288deff820d1007bbc4e0 (patch) | |
tree | 4e2fb8ba657db8849d05aff93c88dda31339609c /target/linux/ar71xx/files/include | |
parent | c27370463eba233e0938e73b279f952027efa83c (diff) | |
download | upstream-3fc9a88fa180ec992cb288deff820d1007bbc4e0.tar.gz upstream-3fc9a88fa180ec992cb288deff820d1007bbc4e0.tar.bz2 upstream-3fc9a88fa180ec992cb288deff820d1007bbc4e0.zip |
[ar71xx] prepare for ath9k support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13825 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/include')
-rw-r--r-- | target/linux/ar71xx/files/include/linux/ath9k_platform.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/include/linux/ath9k_platform.h b/target/linux/ar71xx/files/include/linux/ath9k_platform.h new file mode 100644 index 0000000000..d769560795 --- /dev/null +++ b/target/linux/ar71xx/files/include/linux/ath9k_platform.h @@ -0,0 +1,20 @@ +/* + * ath9k platform data defines + * + * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published + * by the Free Software Foundation. + */ + +#ifndef _LINUX_ATH9K_PLATFORM_H +#define _LINUX_ATH9L_PLATFORM_H + +#define ATH9K_PLAT_EEP_MAX_WORDS 2048 + +struct ath9k_platform_data { + u16 eeprom_data[ATH9K_PLAT_EEP_MAX_WORDS]; +}; + +#endif /* _LINUX_ATH9K_PLATFORM_H */ |