1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 23:22:37 +02:00

satasii: drop unused variable from par data struct

Change-Id: I17725195d0523068453325742d7e2aae31a0208d
Signed-off-by: Alexander Goncharov <chat@joursoir.net>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/66293
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Alexander Goncharov 2022-07-30 22:36:50 +03:00 committed by Anastasia Klimchuk
parent 1a357586bc
commit 474a8b8259

View File

@ -27,7 +27,6 @@
struct satasii_data { struct satasii_data {
uint8_t *bar; uint8_t *bar;
uint16_t id;
}; };
static const struct dev_entry satas_sii[] = { static const struct dev_entry satas_sii[] = {
@ -146,7 +145,6 @@ static int satasii_init(void)
return 1; return 1;
} }
data->bar = bar; data->bar = bar;
data->id = id;
return register_par_master(&par_master_satasii, BUS_PARALLEL, data); return register_par_master(&par_master_satasii, BUS_PARALLEL, data);
} }