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>
This commit is contained in:
Tyler Wang 2023-11-14 13:16:30 +08:00 committed by Felix Held
parent e6411c0a55
commit f7f661f375
1 changed files with 2 additions and 2 deletions

View File

@ -71,10 +71,10 @@ struct spi_flash_part_id {
*/
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;