Another round of sonarlint work

This commit is contained in:
Jasmine Iwanek
2023-06-28 13:46:28 -04:00
parent b750471e5c
commit 1116aadb6f
135 changed files with 2425 additions and 1355 deletions

View File

@@ -124,6 +124,9 @@ lpt_write(uint16_t port, uint8_t val, void *priv)
dev->ctrl = val;
dev->enable_irq = val & 0x10;
break;
default:
break;
}
}
@@ -154,6 +157,9 @@ lpt_read(uint16_t port, void *priv)
else
ret = 0xe0 | dev->ctrl | dev->enable_irq;
break;
default:
break;
}
return ret;