drivers: wireless: Fix warnings in gs2200m.c
Summary: - This commit fixes warnings when we remove noreturn from _assert() Impact: - Should have no impact Testing: - Tested with spresense:wifi Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
This commit is contained in:
parent
f428160dcc
commit
58317b1430
@ -280,6 +280,7 @@ static enum pkt_type_e _spi_err_to_pkt_type(enum spi_status_e s)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
r = TYPE_UNMATCH;
|
||||||
ASSERT(false);
|
ASSERT(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -304,6 +305,7 @@ static uint8_t _cid_to_uint8(char c)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
ret = 0xff;
|
||||||
ASSERT(false);
|
ASSERT(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user