mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-16 23:08:49 +02:00
dell_flash_unlock: Fix ec_set_fdo() signature
Set argument list as void. Signed-off-by: Nicholas Chin <nic.c3.14@gmail.com>
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
int get_fdo_status(void);
|
int get_fdo_status(void);
|
||||||
int check_lpc_decode(void);
|
int check_lpc_decode(void);
|
||||||
void ec_set_fdo();
|
void ec_set_fdo(void);
|
||||||
void write_ec_reg(uint8_t index, uint8_t data);
|
void write_ec_reg(uint8_t index, uint8_t data);
|
||||||
void send_ec_cmd(uint8_t cmd);
|
void send_ec_cmd(uint8_t cmd);
|
||||||
int wait_ec(void);
|
int wait_ec(void);
|
||||||
@@ -141,7 +141,7 @@ check_lpc_decode(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
ec_set_fdo()
|
ec_set_fdo(void)
|
||||||
{
|
{
|
||||||
/* EC FDO command arguments for reference:
|
/* EC FDO command arguments for reference:
|
||||||
* 0 = Query EC FDO status
|
* 0 = Query EC FDO status
|
||||||
|
|||||||
Reference in New Issue
Block a user