bsps/moxie: Address unused parameter warnings

Add "(void) param;" annotation to address unused parameter warnings.
Found with GCC's warning -Wunused-parameter.
This commit is contained in:
Joel Sherrill
2025-10-10 13:59:03 -05:00
committed by Gedare Bloom
parent a0028bdf4a
commit 7c48bd9bb7

View File

@@ -70,6 +70,8 @@ void console_outbyte_polled(
char ch
)
{
(void) port;
_sys_write( 1, &ch, 1 );
}
@@ -83,6 +85,8 @@ int console_inbyte_nonblocking(
int port
)
{
(void) port;
return -1;
}