diff options
author | Luciano Coelho <coelho@ti.com> | 2012-05-10 12:14:01 +0300 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2012-06-05 15:57:36 +0300 |
commit | 73d8a42464d3fd8de907d032a7dafa1d23d88490 (patch) | |
tree | 5820b80d6fa3ef9de111c6bc16ebaa237580195b /drivers/net/wireless/ti/wl18xx | |
parent | 4f64a1e93f4749ea2ecacb7e93485ef9607b4e48 (diff) | |
download | talos-op-linux-73d8a42464d3fd8de907d032a7dafa1d23d88490.tar.gz talos-op-linux-73d8a42464d3fd8de907d032a7dafa1d23d88490.zip |
wl18xx: change low_band_component_type value for COM8
Like HDK, COM8 uses 0x06 for the low_band_component_type as well.
Hardcode the value for COM8 until this configuration can be done in
the external configuration binary (to be implemented).
Signed-off-by: Luciano Coelho <coelho@ti.com>
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Diffstat (limited to 'drivers/net/wireless/ti/wl18xx')
-rw-r--r-- | drivers/net/wireless/ti/wl18xx/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/ti/wl18xx/main.c b/drivers/net/wireless/ti/wl18xx/main.c index aa227a17187e..6047a6d90975 100644 --- a/drivers/net/wireless/ti/wl18xx/main.c +++ b/drivers/net/wireless/ti/wl18xx/main.c @@ -1086,6 +1086,8 @@ int __devinit wl18xx_probe(struct platform_device *pdev) priv->board_type = BOARD_TYPE_EVB_18XX; } else if (!strcmp(board_type_param, "com8")) { priv->board_type = BOARD_TYPE_COM8_18XX; + /* HACK! Just for now we hardcode COM8 to 0x06 */ + priv->conf.phy.low_band_component_type = 0x06; } else { wl1271_error("invalid board type '%s'", board_type_param); wlcore_free_hw(wl); |