diff options
author | Michal Simek <michal.simek@xilinx.com> | 2020-10-26 11:28:27 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2020-10-27 08:13:33 +0100 |
commit | 89b7f1010f0b835a6d082356889c409eb827763b (patch) | |
tree | 4471c5669b45a55a5cc4621195b1f197e0cb3045 /drivers | |
parent | 262bcedf106d24970c93aded851a258856d49e3e (diff) | |
download | u-boot-89b7f1010f0b835a6d082356889c409eb827763b.zip u-boot-89b7f1010f0b835a6d082356889c409eb827763b.tar.gz u-boot-89b7f1010f0b835a6d082356889c409eb827763b.tar.bz2 |
mtd: spi: Fix incorrect indentation
Use tabs to be aligned with the rest of the code.
Fixes: 658df8bd9464 ("mtd: spi-nor-core: Add octal mode support")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/spi/sf_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/spi/sf_internal.h b/drivers/mtd/spi/sf_internal.h index dabd40a..9ceff0e 100644 --- a/drivers/mtd/spi/sf_internal.h +++ b/drivers/mtd/spi/sf_internal.h @@ -67,7 +67,7 @@ struct flash_info { #define SPI_NOR_SKIP_SFDP BIT(13) /* Skip parsing of SFDP tables */ #define USE_CLSR BIT(14) /* use CLSR command */ #define SPI_NOR_HAS_SST26LOCK BIT(15) /* Flash supports lock/unlock via BPR */ -#define SPI_NOR_OCTAL_READ BIT(16) /* Flash supports Octal Read */ +#define SPI_NOR_OCTAL_READ BIT(16) /* Flash supports Octal Read */ }; extern const struct flash_info spi_nor_ids[]; |