mb/getac/p470: Remove unused 'send_ec_oem_data_nowait()'

Change-Id: If68629f22803ebd61cd00b76b9e61822178325f9
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68372
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <patrick@coreboot.org>
This commit is contained in:
Elyes Haouas 2022-10-13 12:42:19 +02:00 committed by Patrick Georgi
parent 8eb7b35010
commit 15ad9dd1b7
2 changed files with 0 additions and 8 deletions

View File

@ -47,13 +47,6 @@ int send_ec_oem_data(u8 data)
return 0;
}
int send_ec_oem_data_nowait(u8 data)
{
outb(data, EC_OEM_DATA);
return 0;
}
u8 recv_ec_oem_data(void)
{
int timeout;

View File

@ -23,7 +23,6 @@
int send_ec_oem_command(u8 command);
int send_ec_oem_data(u8 data);
int send_ec_oem_data_nowait(u8 data);
u8 recv_ec_oem_data(void);
u8 ec_oem_read(u8 addr);
int ec_oem_write(u8 addr, u8 data);