Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

mtd: spinand: Clean the flags section

Mention that we are declaring the main SPI NAND flags with a comment.
Align the values with tabs.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>

+3 -2
+3 -2
include/linux/mtd/spinand.h
··· 477 477 const struct mtd_ooblayout_ops *ooblayout; 478 478 }; 479 479 480 - #define SPINAND_HAS_QE_BIT BIT(0) 481 - #define SPINAND_HAS_CR_FEAT_BIT BIT(1) 480 + /* SPI NAND flags */ 481 + #define SPINAND_HAS_QE_BIT BIT(0) 482 + #define SPINAND_HAS_CR_FEAT_BIT BIT(1) 482 483 #define SPINAND_HAS_PROG_PLANE_SELECT_BIT BIT(2) 483 484 #define SPINAND_HAS_READ_PLANE_SELECT_BIT BIT(3) 484 485 #define SPINAND_NO_RAW_ACCESS BIT(4)