From b27a1e8e2482811f613c51e5ce64aad32bc40c54 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Tue, 23 Feb 2016 23:26:09 +0100 Subject: [PATCH] kw2xrf: fix two typos --- drivers/kw2xrf/kw2xrf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/kw2xrf/kw2xrf.c b/drivers/kw2xrf/kw2xrf.c index c0d2c233d7..36cd9505d5 100644 --- a/drivers/kw2xrf/kw2xrf.c +++ b/drivers/kw2xrf/kw2xrf.c @@ -1008,7 +1008,7 @@ void _receive_data(kw2xrf_t *dev) return; } - /* If RAW-mode is selected direclty forward pkt, MAC does the rest */ + /* If RAW-mode is selected directly forward pkt, MAC does the rest */ if (dev->option & KW2XRF_OPT_RAWDUMP) { payload = gnrc_pktbuf_add(NULL, NULL, pkt_len, GNRC_NETTYPE_UNDEF); @@ -1043,8 +1043,8 @@ void _receive_data(kw2xrf_t *dev) netif->if_pid = thread_getpid(); netif->lqi = dev->buf[pkt_len]; /* lqi and rssi are directly related to each other in the kw2x-device. - * The rssi-unit is dBm and in this case alwaysnegative, nevertheless - * a positive value is reported. + * The rssi-unit is dBm and in this case always negative, nevertheless a + * positive value is reported. */ netif->rssi = -((netif->lqi) - 286.6) / 2.69333;