mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 07:02:34 +02:00
cbtables.c/search_lb_records: Drop unused variable count
Clang 15 complains about it. Remove it. Original-Signed-off-by: Felix Singer <felixsinger@posteo.net> Original-Reviewed-on: https://review.coreboot.org/c/flashrom/+/70247 Original-Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Original-Reviewed-by: Angel Pons <th3fanbus@gmail.com> Original-Tested-by: build bot (Jenkins) <no-reply@coreboot.org> (cherry picked from commit 8390d73806559ceb10894b7302b0dfcb3d71bd0d) Change-Id: I340208f513bed57a9cc2bba880a2400352c5cc42 Signed-off-by: Evan Benn <evanbenn@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/70324 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-by: David Hendricks <david.hendricks@gmail.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
fc9baab9f7
commit
405402fe85
@ -295,13 +295,10 @@ static struct lb_record *next_record(struct lb_record *rec)
|
|||||||
static void search_lb_records(struct lb_record *rec, struct lb_record *last, unsigned long addr)
|
static void search_lb_records(struct lb_record *rec, struct lb_record *last, unsigned long addr)
|
||||||
{
|
{
|
||||||
struct lb_record *next;
|
struct lb_record *next;
|
||||||
int count;
|
|
||||||
count = 0;
|
|
||||||
|
|
||||||
for (next = next_record(rec); (rec < last) && (next <= last);
|
for (next = next_record(rec); (rec < last) && (next <= last);
|
||||||
rec = next, addr += rec->size) {
|
rec = next, addr += rec->size) {
|
||||||
next = next_record(rec);
|
next = next_record(rec);
|
||||||
count++;
|
|
||||||
if (rec->tag == LB_TAG_MAINBOARD) {
|
if (rec->tag == LB_TAG_MAINBOARD) {
|
||||||
find_mainboard(rec, addr);
|
find_mainboard(rec, addr);
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user