summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/layer1
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-01-15 17:07:09 +0100
committerHarald Welte <laforge@gnumonks.org>2017-01-15 19:18:38 +0100
commit95b10c62caedc943b4686807eb4979b0b0de4c57 (patch)
tree3a7bcbf055cfaa3a795847de4f1579542b5d1e5d /src/target/firmware/layer1
parent9004de39ab1e047a7d6687e68f5bad708364b09f (diff)
fix various other compiler warnings
Diffstat (limited to 'src/target/firmware/layer1')
-rw-r--r--src/target/firmware/layer1/prim_pm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/target/firmware/layer1/prim_pm.c b/src/target/firmware/layer1/prim_pm.c
index 1630600a..5c8c4914 100644
--- a/src/target/firmware/layer1/prim_pm.c
+++ b/src/target/firmware/layer1/prim_pm.c
@@ -108,7 +108,7 @@ static int l1s_pm_resp(uint8_t num_meas, __unused uint8_t p2,
l1s.pm.msg = l1ctl_msgb_alloc(L1CTL_PM_CONF);
}
- pmr = msgb_put(l1s.pm.msg, sizeof(*pmr));
+ pmr = (struct l1ctl_pm_conf *) msgb_put(l1s.pm.msg, sizeof(*pmr));
pmr->band_arfcn = htons(arfcn);
/* FIXME: do this as RxLev rather than DBM8 ? */
pmr->pm[0] = dbm2rxlev(agc_inp_dbm8_by_pm(pm_level[0])/8);
@@ -125,7 +125,8 @@ static int l1s_pm_resp(uint8_t num_meas, __unused uint8_t p2,
l1s_pm_test(1, l1s.pm.range.arfcn_next);
} else {
/* we have finished, flush the msgb to L2 */
- struct l1ctl_hdr *l1h = l1s.pm.msg->l1h;
+ struct l1ctl_hdr *l1h;
+ l1h = (struct l1ctl_hdr *) l1s.pm.msg->l1h;
l1h->flags |= L1CTL_F_DONE;
l1_queue_for_l2(l1s.pm.msg);
l1s.pm.msg = NULL;