All of lore.kernel.org
 help / color / mirror / Atom feed
From: Antti Palosaari <crope@iki.fi>
To: Nibble Max <nibble.max@gmail.com>
Cc: linux-media <linux-media@vger.kernel.org>
Subject: Re: [PATCH 6/6] m88ds3103: change .set_voltage() implementation
Date: Fri, 22 Aug 2014 13:40:16 +0300	[thread overview]
Message-ID: <53F71E10.6050007@iki.fi> (raw)
In-Reply-To: <201408221119057340205@gmail.com>

Moikka
Sure I can change that flag from voltage_en to voltage_dis. Mostly I
just wanted to get rid of those if () statements and bit operations when
handling boolean type flags.

regards
Antti

On 08/22/2014 06:19 AM, Nibble Max wrote:
> 
> It is easier to understand for using "voltage_dis" to keep the same logic for voltage selection and off/on.
> 
>> Add some error checking and implement functionality a little bit
>> differently.
>>
>> Signed-off-by: Antti Palosaari <crope@iki.fi>
>> ---
>> drivers/media/dvb-frontends/m88ds3103.c | 50 ++++++++++++++++++++++-----------
>> 1 file changed, 34 insertions(+), 16 deletions(-)
>>
>> diff --git a/drivers/media/dvb-frontends/m88ds3103.c b/drivers/media/dvb-frontends/m88ds3103.c
>> index 238b04e..d8fbdfd 100644
>> --- a/drivers/media/dvb-frontends/m88ds3103.c
>> +++ b/drivers/media/dvb-frontends/m88ds3103.c
>> @@ -1038,36 +1038,54 @@ err:
>> }
>>
>> static int m88ds3103_set_voltage(struct dvb_frontend *fe,
>> -	fe_sec_voltage_t voltage)
>> +	fe_sec_voltage_t fe_sec_voltage)
>> {
>> 	struct m88ds3103_priv *priv = fe->demodulator_priv;
>> -	u8 data;
>> +	int ret;
>> +	u8 u8tmp;
>> +	bool voltage_sel, voltage_en;
> bool voltage_sel, voltage_dis;
>>
>> -	m88ds3103_rd_reg(priv, 0xa2, &data);
>> +	dev_dbg(&priv->i2c->dev, "%s: fe_sec_voltage=%d\n", __func__,
>> +			fe_sec_voltage);
>>
>> -	data &= ~0x03; /* bit0 V/H, bit1 off/on */
>> -	if (priv->cfg->lnb_en_pol)
>> -		data |= 0x02;
>> +	if (!priv->warm) {
>> +		ret = -EAGAIN;
>> +		goto err;
>> +	}
>>
>> -	switch (voltage) {
>> +	switch (fe_sec_voltage) {
>> 	case SEC_VOLTAGE_18:
>> -		if (priv->cfg->lnb_hv_pol == 0)
>> -			data |= 0x01;
>> +		voltage_sel = 1;
>> +		voltage_en = 1;
> voltage_dis = 0;
>> 		break;
>> 	case SEC_VOLTAGE_13:
>> -		if (priv->cfg->lnb_hv_pol)
>> -			data |= 0x01;
>> +		voltage_sel = 0;
>> +		voltage_en = 1;
> voltage_dis = 0;
>> 		break;
>> 	case SEC_VOLTAGE_OFF:
>> -		if (priv->cfg->lnb_en_pol)
>> -			data &= ~0x02;
>> -		else
>> -			data |= 0x02;
>> +		voltage_sel = 0;
>> +		voltage_en = 0;
> voltage_dis = 1;
>> 		break;
>> +	default:
>> +		dev_dbg(&priv->i2c->dev, "%s: invalid fe_sec_voltage\n",
>> +				__func__);
>> +		ret = -EINVAL;
>> +		goto err;
>> 	}
>> -	m88ds3103_wr_reg(priv, 0xa2, data);
>> +
>> +	/* output pin polarity */
>> +	voltage_sel ^= priv->cfg->lnb_hv_pol;
>> +	voltage_en ^= !priv->cfg->lnb_en_pol;
> voltage_dis ^= priv->cfg->lnb_en_pol;
>> +
>> +	u8tmp = voltage_en << 1 | voltage_sel << 0;
> u8tmp = voltage_dis << 1 | voltage_sel << 0;
>> +	ret = m88ds3103_wr_reg_mask(priv, 0xa2, u8tmp, 0x03);
>> +	if (ret)
>> +		goto err;
>>
>> 	return 0;
>> +err:
>> +	dev_dbg(&priv->i2c->dev, "%s: failed=%d\n", __func__, ret);
>> +	return ret;
>> }
>>
>> static int m88ds3103_diseqc_send_master_cmd(struct dvb_frontend *fe,
>> -- 
>> http://palosaari.fi/
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-media" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

-- 
http://palosaari.fi/

      reply	other threads:[~2014-08-22 10:40 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-22  0:33 [PATCH 1/6] m88ts2022: fix coding style issues Antti Palosaari
2014-08-22  0:33 ` [PATCH 2/6] m88ts2022: rename device state (priv => s) Antti Palosaari
2014-08-22  0:33 ` [PATCH 3/6] m88ts2022: clean up logging Antti Palosaari
2014-08-22  0:33 ` [PATCH 4/6] m88ts2022: convert to RegMap I2C API Antti Palosaari
2014-08-22  0:33 ` [PATCH 5/6] m88ts2022: change parameter type of m88ts2022_cmd Antti Palosaari
2014-08-22  0:33 ` [PATCH 6/6] m88ds3103: change .set_voltage() implementation Antti Palosaari
2014-08-22  3:19 ` Nibble Max
2014-08-22 10:40   ` Antti Palosaari [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=53F71E10.6050007@iki.fi \
    --to=crope@iki.fi \
    --cc=linux-media@vger.kernel.org \
    --cc=nibble.max@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.