drivers/modem/alt1250: Change return type of bool function

This commit is contained in:
SPRESENSE 2022-10-24 14:33:04 +09:00 committed by Petro Karashchenko
parent 22a29fdc97
commit e66bb207aa

View File

@ -283,9 +283,9 @@ static void write_evtbitmapwithlist(FAR struct alt1250_dev_s *dev,
* Name: is_evtbitmap_avail
****************************************************************************/
static int is_evtbitmap_avail(FAR struct alt1250_dev_s *dev)
static bool is_evtbitmap_avail(FAR struct alt1250_dev_s *dev)
{
int ret;
bool ret;
nxmutex_lock(&dev->evtmaplock);