From 474a8b8259ad9cc04afd123361c5a541c2f1ad87 Mon Sep 17 00:00:00 2001 From: Alexander Goncharov Date: Sat, 30 Jul 2022 22:36:50 +0300 Subject: [PATCH] satasii: drop unused variable from par data struct Change-Id: I17725195d0523068453325742d7e2aae31a0208d Signed-off-by: Alexander Goncharov Reviewed-on: https://review.coreboot.org/c/flashrom/+/66293 Tested-by: build bot (Jenkins) Reviewed-by: Anastasia Klimchuk Reviewed-by: Felix Singer --- satasii.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/satasii.c b/satasii.c index 58432aca3..7e795c2d0 100644 --- a/satasii.c +++ b/satasii.c @@ -27,7 +27,6 @@ struct satasii_data { uint8_t *bar; - uint16_t id; }; static const struct dev_entry satas_sii[] = { @@ -146,7 +145,6 @@ static int satasii_init(void) return 1; } data->bar = bar; - data->id = id; return register_par_master(&par_master_satasii, BUS_PARALLEL, data); }