Alan Green has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/33998
Change subject: flashchips.c: Make .tested lines consistent ......................................................................
flashchips.c: Make .tested lines consistent
As per comments on https://review.coreboot.org/c/flashrom/+/33833/, make placement of spaces in .tested attributes with literal definitions consistent.
Signed-off-by: Alan Green avg@google.com Change-Id: I18118f9f1e858547170fda8412bf6769f5cdcf53 --- M flashchips.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/98/33998/1
diff --git a/flashchips.c b/flashchips.c index 629fedb..35735d6 100644 --- a/flashchips.c +++ b/flashchips.c @@ -2523,7 +2523,7 @@ .total_size = 512, .page_size = 256, .feature_bits = FEATURE_WRSR_WREN, - .tested = {.probe = NT, .read = NT, .erase = NT, .write = BAD }, + .tested = {.probe = NT, .read = NT, .erase = NT, .write = BAD}, .probe = probe_spi_rdid, .probe_timing = TIMING_ZERO, .block_erasers = @@ -3440,7 +3440,7 @@ .total_size = 64, .page_size = 0, /* unused */ .feature_bits = 0, - .tested = {.probe = OK, .read = OK, .erase = BAD, .write = BAD }, + .tested = {.probe = OK, .read = OK, .erase = BAD, .write = BAD}, .probe = probe_jedec, /* FIXME! */ .probe_timing = TIMING_ZERO, .block_erasers =
Edward O'Callaghan has posted comments on this change. ( https://review.coreboot.org/c/flashrom/+/33998 )
Change subject: flashchips.c: Make .tested lines consistent ......................................................................
Patch Set 1: Code-Review+2
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/flashrom/+/33998 )
Change subject: flashchips.c: Make .tested lines consistent ......................................................................
Patch Set 3: Code-Review+1
Shouldn't this go before CB:33931?
Nico Huber has posted comments on this change. ( https://review.coreboot.org/c/flashrom/+/33998 )
Change subject: flashchips.c: Make .tested lines consistent ......................................................................
Patch Set 3: Code-Review-1
There should be spaces, imho. If in doubt, ask checkpatch.
Alan Green has posted comments on this change. ( https://review.coreboot.org/c/flashrom/+/33998 )
Change subject: flashchips.c: Make .tested lines consistent ......................................................................
Patch Set 3:
Patch Set 3: Code-Review-1
There should be spaces, imho. If in doubt, ask checkpatch.
checkpatch.pl appears to be OK with no spaces between open brace and ".".
Nico Huber has posted comments on this change. ( https://review.coreboot.org/c/flashrom/+/33998 )
Change subject: flashchips.c: Make .tested lines consistent ......................................................................
Patch Set 3: -Code-Review
Patch Set 3:
Patch Set 3: Code-Review-1
There should be spaces, imho. If in doubt, ask checkpatch.
checkpatch.pl appears to be OK with no spaces between open brace and ".".
TIL. It seems to assume a line break anyway... which we don't want to add.
Nico Huber has submitted this change and it was merged. ( https://review.coreboot.org/c/flashrom/+/33998 )
Change subject: flashchips.c: Make .tested lines consistent ......................................................................
flashchips.c: Make .tested lines consistent
As per comments on https://review.coreboot.org/c/flashrom/+/33833/, make placement of spaces in .tested attributes with literal definitions consistent.
Signed-off-by: Alan Green avg@google.com Change-Id: I18118f9f1e858547170fda8412bf6769f5cdcf53 Reviewed-on: https://review.coreboot.org/c/flashrom/+/33998 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Angel Pons th3fanbus@gmail.com Reviewed-by: Edward O'Callaghan quasisec@chromium.org --- M flashchips.c 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Angel Pons: Looks good to me, but someone else must approve Edward O'Callaghan: Looks good to me, approved
diff --git a/flashchips.c b/flashchips.c index 4dd9d77..7f31c30 100644 --- a/flashchips.c +++ b/flashchips.c @@ -2523,7 +2523,7 @@ .total_size = 512, .page_size = 256, .feature_bits = FEATURE_WRSR_WREN, - .tested = {.probe = NT, .read = NT, .erase = NT, .write = BAD }, + .tested = {.probe = NT, .read = NT, .erase = NT, .write = BAD}, .probe = probe_spi_rdid, .probe_timing = TIMING_ZERO, .block_erasers = @@ -3440,7 +3440,7 @@ .total_size = 64, .page_size = 0, /* unused */ .feature_bits = 0, - .tested = {.probe = OK, .read = OK, .erase = BAD, .write = BAD }, + .tested = {.probe = OK, .read = OK, .erase = BAD, .write = BAD}, .probe = probe_jedec, /* FIXME! */ .probe_timing = TIMING_ZERO, .block_erasers =