1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 14:11:15 +02:00

tree: indent struct *_master consistently with tabs

Use `<tab>.key<tab>*= <value>,`

TEST: `make VERSION=0 MAN_DATE=0` returns the same flashrom binary
before and after the patch

Change-Id: I1c45ea9804ca09e040d7ac98255042f58b01f8ef
Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/65363
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Thomas Heijligen
2022-06-23 14:38:35 +02:00
committed by Thomas Heijligen
parent d41595e207
commit b554cdc91e
33 changed files with 293 additions and 293 deletions

View File

@ -442,19 +442,19 @@ out:
}
static const struct opaque_master opaque_master_nicintel_ee_82580 = {
.probe = nicintel_ee_probe_82580,
.read = nicintel_ee_read,
.write = nicintel_ee_write_82580,
.erase = nicintel_ee_erase_82580,
.shutdown = nicintel_ee_shutdown_82580,
.probe = nicintel_ee_probe_82580,
.read = nicintel_ee_read,
.write = nicintel_ee_write_82580,
.erase = nicintel_ee_erase_82580,
.shutdown = nicintel_ee_shutdown_82580,
};
static const struct opaque_master opaque_master_nicintel_ee_i210 = {
.probe = nicintel_ee_probe_i210,
.read = nicintel_ee_read,
.write = nicintel_ee_write_i210,
.erase = nicintel_ee_erase_i210,
.shutdown = nicintel_ee_shutdown_i210,
.probe = nicintel_ee_probe_i210,
.read = nicintel_ee_read,
.write = nicintel_ee_write_i210,
.erase = nicintel_ee_erase_i210,
.shutdown = nicintel_ee_shutdown_i210,
};
static int nicintel_ee_init(void)