From 7ffd293df31c2348ccc4d0d79b0661dc2a10937b Mon Sep 17 00:00:00 2001 From: Alexander Aring Date: Sat, 5 Apr 2014 13:49:26 +0200 Subject: [PATCH] at86rf230: fix MAX_CSMA_RETRIES parameter This patch fix a copy&paste failure for setting the MAX_CSMA_RETRIES value of the at86rf212 chip which was introduced by commit a3898e3cc9430a102872bda93367b149e20b343e ("ieee802154: enable smart transmitter features of RF212") Signed-off-by: Alexander Aring Cc: Phoebe Buckheister Signed-off-by: David S. Miller --- drivers/net/ieee802154/at86rf230.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ieee802154/at86rf230.c b/drivers/net/ieee802154/at86rf230.c index 89417ac41083e..430bb0db9bc4c 100644 --- a/drivers/net/ieee802154/at86rf230.c +++ b/drivers/net/ieee802154/at86rf230.c @@ -852,7 +852,7 @@ at86rf212_set_csma_params(struct ieee802154_dev *dev, u8 min_be, u8 max_be, if (rc) return rc; - return at86rf230_write_subreg(lp, SR_MAX_CSMA_RETRIES, max_be); + return at86rf230_write_subreg(lp, SR_MAX_CSMA_RETRIES, retries); } static int -- 2.39.5