diff options
author | Luciano Coelho <coelho@ti.com> | 2012-05-10 12:13:43 +0300 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2012-06-05 15:56:15 +0300 |
commit | a5d751bb9298360f5547d30734aed4a54a8af3e4 (patch) | |
tree | ed226205c655ea9199ed90cb1e3ac5235dd0c315 /drivers/net/wireless/ti/wl12xx/wl12xx.h | |
parent | 8388569a34396fccee22ae8348ca624959694ce0 (diff) | |
download | blackbird-op-linux-a5d751bb9298360f5547d30734aed4a54a8af3e4.tar.gz blackbird-op-linux-a5d751bb9298360f5547d30734aed4a54a8af3e4.zip |
wlcore/wl12xx: move ref_clock and tcxo_clock elements to wl12xx
Only wl12xx needs to get the ref_clock anc tcxo_clock values from the
platform data. Move these elements from the wl1271 structure to
wl12xx's private data.
Signed-off-by: Luciano Coelho <coelho@ti.com>
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Diffstat (limited to 'drivers/net/wireless/ti/wl12xx/wl12xx.h')
-rw-r--r-- | drivers/net/wireless/ti/wl12xx/wl12xx.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/ti/wl12xx/wl12xx.h b/drivers/net/wireless/ti/wl12xx/wl12xx.h index 74cd332e23ef..0d81c1e00b4a 100644 --- a/drivers/net/wireless/ti/wl12xx/wl12xx.h +++ b/drivers/net/wireless/ti/wl12xx/wl12xx.h @@ -26,6 +26,9 @@ struct wl12xx_priv { struct wl12xx_priv_conf conf; + + int ref_clock; + int tcxo_clock; }; #endif /* __WL12XX_PRIV_H__ */ |