Anastasia Klimchuk has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/56469 )
Change subject: programmer_table: Remove space between address operator and variable ......................................................................
programmer_table: Remove space between address operator and variable
BUG=none TEST=builds
Change-Id: Iba29b1bc3d77b8c17c51fc0552c129e6965fa308 Signed-off-by: Anastasia Klimchuk aklm@chromium.org --- M programmer_table.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/69/56469/1
diff --git a/programmer_table.c b/programmer_table.c index e7f2c98..6eb6b77 100644 --- a/programmer_table.c +++ b/programmer_table.c @@ -33,7 +33,7 @@ #endif
#if CONFIG_NICREALTEK == 1 - & programmer_nicrealtek, + &programmer_nicrealtek, #endif
#if CONFIG_NICNATSEMI == 1 @@ -173,4 +173,4 @@ #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);