CHG remove unnecessary breaks

This commit is contained in:
Thomas Kuschel 2024-10-20 00:06:10 +02:00
parent d2ef7ea91a
commit c9127b95ad

View File

@ -141,13 +141,13 @@ static int si5351_error_status_i2c(HAL_StatusTypeDef status) {
switch (status) {
case HAL_TIMEOUT:
return -ETIMEDOUT;
break;
//break;
case HAL_ERROR:
return -EIO;
break;
//break;
case HAL_BUSY:
return -EBUSY;
break;
//break;
case HAL_OK:
default:
return 0;