diff options
author | Alan Green <avg@google.com> | 2019-06-27 12:09:13 +1000 |
---|---|---|
committer | Edward O'Callaghan <quasisec@chromium.org> | 2019-07-04 04:30:42 +0000 |
commit | f5ad688f8be10c23dacc853ec0120bef5c6c3e1f (patch) | |
tree | 474ca95ab1203026b761fbcfd325ab99390bcf32 | |
parent | 86bf6ab8876898d93ec19472190d8a2d0d56056e (diff) | |
download | flashrom-f5ad688f8be10c23dacc853ec0120bef5c6c3e1f.tar.gz flashrom-f5ad688f8be10c23dacc853ec0120bef5c6c3e1f.tar.bz2 flashrom-f5ad688f8be10c23dacc853ec0120bef5c6c3e1f.zip |
flashchips.c: Add comma after every .voltage attribute
To allow automated tools to manipulate flashchips.c, ensure that every
voltage attribute ends with a comma, even if it is the last member in
the definition.
Signed-off-by: Alan Green <avg@google.com>
Change-Id: Ie609d11ab846361f375f7b024d6ca55f83b01682
Reviewed-on: https://review.coreboot.org/c/flashrom/+/33832
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
-rw-r--r-- | flashchips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flashchips.c b/flashchips.c index ac655104..ad7ecd75 100644 --- a/flashchips.c +++ b/flashchips.c @@ -525,7 +525,7 @@ const struct flashchip flashchips[] = { }, .write = write_jedec_1, .read = read_memmapped, - .voltage = {3000, 3600} /* 3.0-3.6V for type -70R, others 2.7-3.6V */ + .voltage = {3000, 3600}, /* 3.0-3.6V for type -70R, others 2.7-3.6V */ }, { @@ -557,7 +557,7 @@ const struct flashchip flashchips[] = { }, .write = write_jedec_1, .read = read_memmapped, - .voltage = {3000, 3600} /* 3.0-3.6V for type -70R, others 2.7-3.6V */ + .voltage = {3000, 3600}, /* 3.0-3.6V for type -70R, others 2.7-3.6V */ }, { |