From 1bddbae297036efc57894ec548020aeccb0550cc Mon Sep 17 00:00:00 2001 From: Luis Alves Date: Tue, 9 Dec 2014 22:06:12 +0000 Subject: [PATCH] rf230bb: Fix missing ')' and indentation. --- cpu/avr/radio/rf230bb/rf230bb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpu/avr/radio/rf230bb/rf230bb.c b/cpu/avr/radio/rf230bb/rf230bb.c index e3ed931f1..e4181868c 100644 --- a/cpu/avr/radio/rf230bb/rf230bb.c +++ b/cpu/avr/radio/rf230bb/rf230bb.c @@ -1679,7 +1679,7 @@ rf230_cca(void) /* Use ED register to determine result. 77dBm is poweron csma default.*/ #ifdef RF230_CONF_CCA_THRES - if (hal_register_read(RG_PHY_ED_LEVEL)<(91+RF230_CONF_CCA_THRES) cca=0xff; + if (hal_register_read(RG_PHY_ED_LEVEL)<(91+RF230_CONF_CCA_THRES)) cca=0xff; #else if (hal_register_read(RG_PHY_ED_LEVEL)<(91-77)) cca=0xff; #endif @@ -1701,9 +1701,9 @@ rf230_cca(void) /* If already in receive mode can read the current ED register without delay */ /* CCA energy threshold = -91dB + 2*SR_CCA_ED_THRESH. Reset defaults to -77dB */ #ifdef RF230_CONF_CCA_THRES - if (hal_register_read(RG_PHY_ED_LEVEL)<(91+RF230_CONF_CCA_THRES) cca=0xff; + if (hal_register_read(RG_PHY_ED_LEVEL)<(91+RF230_CONF_CCA_THRES)) cca=0xff; #else - if (hal_register_read(RG_PHY_ED_LEVEL)<(91-77)) cca=0xff; + if (hal_register_read(RG_PHY_ED_LEVEL)<(91-77)) cca=0xff; #endif #endif