提交 1cc9fc53 编写于 作者: A Alexander Aring 提交者: David S. Miller

at86rf230: remove unnecessary state read

This patch removes a unnecessary state read. The status value is never
evaluate after reading the state.

Also rename the status variable to dvdd, because this variable will be
used later.
Signed-off-by: NAlexander Aring <alex.aring@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 57e48ffc
...@@ -969,13 +969,9 @@ static int at86rf230_irq_polarity(struct at86rf230_local *lp, int pol) ...@@ -969,13 +969,9 @@ static int at86rf230_irq_polarity(struct at86rf230_local *lp, int pol)
static int at86rf230_hw_init(struct at86rf230_local *lp) static int at86rf230_hw_init(struct at86rf230_local *lp)
{ {
int rc, irq_pol, irq_type; int rc, irq_pol, irq_type;
u8 status; u8 dvdd;
u8 csma_seed[2]; u8 csma_seed[2];
rc = at86rf230_read_subreg(lp, SR_TRX_STATUS, &status);
if (rc)
return rc;
rc = at86rf230_write_subreg(lp, SR_TRX_CMD, STATE_FORCE_TRX_OFF); rc = at86rf230_write_subreg(lp, SR_TRX_CMD, STATE_FORCE_TRX_OFF);
if (rc) if (rc)
return rc; return rc;
...@@ -1015,10 +1011,10 @@ static int at86rf230_hw_init(struct at86rf230_local *lp) ...@@ -1015,10 +1011,10 @@ static int at86rf230_hw_init(struct at86rf230_local *lp)
/* Wait the next SLEEP cycle */ /* Wait the next SLEEP cycle */
msleep(100); msleep(100);
rc = at86rf230_read_subreg(lp, SR_DVDD_OK, &status); rc = at86rf230_read_subreg(lp, SR_DVDD_OK, &dvdd);
if (rc) if (rc)
return rc; return rc;
if (!status) { if (!dvdd) {
dev_err(&lp->spi->dev, "DVDD error\n"); dev_err(&lp->spi->dev, "DVDD error\n");
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册