diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-12-04 20:37:01 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-12-04 20:37:01 +0000 |
commit | 3a9d303059a1689ad9ff856e430fef04bd3fb7f5 (patch) | |
tree | b17658b91c9b0e70814987b4deb882da2a416ff7 /package/iwinfo/src/include/iwinfo.h | |
parent | 33750dc3e93e6d2279b9f39ce7c46e8a1e1f1c48 (diff) | |
download | upstream-3a9d303059a1689ad9ff856e430fef04bd3fb7f5.tar.gz upstream-3a9d303059a1689ad9ff856e430fef04bd3fb7f5.tar.bz2 upstream-3a9d303059a1689ad9ff856e430fef04bd3fb7f5.zip |
iwinfo: expose txpower and frequency offset information
SVN-Revision: 29425
Diffstat (limited to 'package/iwinfo/src/include/iwinfo.h')
-rw-r--r-- | package/iwinfo/src/include/iwinfo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/iwinfo/src/include/iwinfo.h b/package/iwinfo/src/include/iwinfo.h index 86bf8b1b6d..198d57c9d2 100644 --- a/package/iwinfo/src/include/iwinfo.h +++ b/package/iwinfo/src/include/iwinfo.h @@ -120,7 +120,9 @@ extern const struct iwinfo_hardware_entry IWINFO_HARDWARE_ENTRIES[]; struct iwinfo_ops { int (*channel)(const char *, int *); int (*frequency)(const char *, int *); + int (*frequency_offset)(const char *, int *); int (*txpower)(const char *, int *); + int (*txpower_offset)(const char *, int *); int (*bitrate)(const char *, int *); int (*signal)(const char *, int *); int (*noise)(const char *, int *); |