summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnastasia Klimchuk <aklm@chromium.org>2021-07-21 14:45:52 +1000
committerEdward O'Callaghan <quasisec@chromium.org>2021-08-09 07:04:37 +0000
commit56c82fe623f16bd2656ee097e35c52d6a028d9ae (patch)
tree6ccef49d6e92fe2d39ef90d946f34ae3fdb776e3
parentb7dec7f2cce9f81d5059c3c3e0d65d14fd9363c8 (diff)
downloadflashrom-56c82fe623f16bd2656ee097e35c52d6a028d9ae.tar.gz
flashrom-56c82fe623f16bd2656ee097e35c52d6a028d9ae.tar.bz2
flashrom-56c82fe623f16bd2656ee097e35c52d6a028d9ae.zip
programmer_table: Remove space between address operator and variable
BUG=none TEST=builds Change-Id: Iba29b1bc3d77b8c17c51fc0552c129e6965fa308 Signed-off-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/56469 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Thomas Heijligen <src@posteo.de> Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
-rw-r--r--programmer_table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/programmer_table.c b/programmer_table.c
index e7f2c985a..6eb6b7712 100644
--- a/programmer_table.c
+++ b/programmer_table.c
@@ -33,7 +33,7 @@ const struct programmer_entry *const programmer_table[] = {
#endif
#if CONFIG_NICREALTEK == 1
- & programmer_nicrealtek,
+ &programmer_nicrealtek,
#endif
#if CONFIG_NICNATSEMI == 1
@@ -173,4 +173,4 @@ const struct programmer_entry *const programmer_table[] = {
#endif
};
-const size_t programmer_table_size = ARRAY_SIZE(programmer_table); \ No newline at end of file
+const size_t programmer_table_size = ARRAY_SIZE(programmer_table);