Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aad1b0b5 authored by Varka Bhadram's avatar Varka Bhadram Committed by Marcel Holtmann
Browse files

cc2520: fix in default tx power setting



Initially we dont have the tx power settings from the user-space.
Now we have the support for seeting the tx power level.

So lets use the default tx power setting for the radio.

Signed-off-by: default avatarVarka Bhadram <varkab@cdac.in>
Cc: Brad Campbell <bradjc5@gmail.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent bc6e17b8
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -782,10 +782,6 @@ static int cc2520_hw_init(struct cc2520_private *priv)
	 * http://www.ti.com/lit/an/swra229a/swra229a.pdf
	 */
	if (pdata.amplified) {
		ret = cc2520_write_register(priv, CC2520_TXPOWER, 0xF9);
		if (ret)
			goto err_ret;

		ret = cc2520_write_register(priv, CC2520_AGCCTRL1, 0x16);
		if (ret)
			goto err_ret;
@@ -806,10 +802,6 @@ static int cc2520_hw_init(struct cc2520_private *priv)
		if (ret)
			goto err_ret;
	} else {
		ret = cc2520_write_register(priv, CC2520_TXPOWER, 0xF7);
		if (ret)
			goto err_ret;

		ret = cc2520_write_register(priv, CC2520_AGCCTRL1, 0x11);
		if (ret)
			goto err_ret;