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:
Masayuki Ishikawa 2020-09-11 13:55:27 +09:00 committed by Alin Jerpelea
parent f428160dcc
commit 58317b1430

View File

@ -280,6 +280,7 @@ static enum pkt_type_e _spi_err_to_pkt_type(enum spi_status_e s)
break;
default:
r = TYPE_UNMATCH;
ASSERT(false);
}
@ -304,6 +305,7 @@ static uint8_t _cid_to_uint8(char c)
}
else
{
ret = 0xff;
ASSERT(false);
}