Misc: Make struct member functions file-local

This commit is contained in:
Stenzek
2023-11-18 16:21:51 +10:00
parent bee1f986a9
commit cce7be4723
39 changed files with 680 additions and 595 deletions

View File

@ -19,6 +19,7 @@
Log_SetChannel(SIO);
namespace SIO {
namespace {
union SIO_CTRL
{
@ -64,6 +65,7 @@ union SIO_MODE
BitField<u16, u8, 5, 1> parity_type;
BitField<u16, u8, 6, 2> stop_bit_length;
};
} // namespace
static void SoftReset();
@ -79,7 +81,9 @@ void SIO::Initialize()
Reset();
}
void SIO::Shutdown() {}
void SIO::Shutdown()
{
}
void SIO::Reset()
{