drivers: ieee802154_kw41z: Cleanup use of C99 types

We introduced some see C99 types, so convert them over to the Zephyr
types.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-05-09 08:35:45 -05:00 committed by Anas Nashif
commit c11877941a

View file

@ -239,7 +239,7 @@ static int kw41z_set_ieee_addr(struct device *dev, const u8_t *ieee_addr)
return 0; return 0;
} }
static int kw41z_set_txpower(struct device *dev, int16_t dbm) static int kw41z_set_txpower(struct device *dev, s16_t dbm)
{ {
if (dbm < KW41Z_OUTPUT_POWER_MIN) { if (dbm < KW41Z_OUTPUT_POWER_MIN) {
ZLL->PA_PWR = 0; ZLL->PA_PWR = 0;