Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/79053?usp=email )
(
2 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: drivers: spi_flash: Add space before colon to fix coding style ......................................................................
drivers: spi_flash: Add space before colon to fix coding style
BUG=none TEST=build karis firmware pass
Change-Id: I67b4ca4c8fde795d4206eaa0b9ea9d9bfc768ac6 Signed-off-by: Tyler Wang tyler.wang@quanta.corp-partner.google.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/79053 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: David Wu david_wu@quanta.corp-partner.google.com Reviewed-by: Paul Menzel paulepanter@mailbox.org --- M src/drivers/spi/spi_flash_internal.h 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: Paul Menzel: Looks good to me, but someone else must approve build bot (Jenkins): Verified David Wu: Looks good to me, approved
diff --git a/src/drivers/spi/spi_flash_internal.h b/src/drivers/spi/spi_flash_internal.h index e388311..1927111 100644 --- a/src/drivers/spi/spi_flash_internal.h +++ b/src/drivers/spi/spi_flash_internal.h @@ -71,10 +71,10 @@ */ uint16_t id[2]; /* Log based 2 total number of sectors. */ - uint16_t nr_sectors_shift: 4; + uint16_t nr_sectors_shift : 4; uint16_t fast_read_dual_output_support : 1; /* 1-1-2 read */ uint16_t fast_read_dual_io_support : 1; /* 1-2-2 read */ - uint16_t _reserved_for_flags: 2; + uint16_t _reserved_for_flags : 2; /* Block protection. Currently used by Winbond. */ uint16_t protection_granularity_shift : 5; uint16_t bp_bits : 3;