mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-03 10:17:21 +00:00
mtd: spi-nor: Move SR3 WPS bit definition in the correct location
Move the SR3 bit definition in the right place. Fix
what is likely a rebase artifact. No functional change.
Fixes: 215f1d5794
("mtd: spi-nor: Clear Winbond SR3 WPS bit on boot")
Signed-off-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
7f45377152
commit
f83e36fd83
1 changed files with 3 additions and 3 deletions
|
@ -182,15 +182,15 @@
|
|||
/* Status Register 2 bits. */
|
||||
#define SR2_QUAD_EN_BIT7 BIT(7)
|
||||
|
||||
/* Status Register 3 bits. */
|
||||
#define SR3_WPS BIT(2)
|
||||
|
||||
/*
|
||||
* Maximum number of flashes that can be connected
|
||||
* in stacked/parallel configuration
|
||||
*/
|
||||
#define SNOR_FLASH_CNT_MAX 2
|
||||
|
||||
/* Status Register 3 bits. */
|
||||
#define SR3_WPS BIT(2)
|
||||
|
||||
/* For Cypress flash. */
|
||||
#define SPINOR_OP_RD_ANY_REG 0x65 /* Read any register */
|
||||
#define SPINOR_OP_WR_ANY_REG 0x71 /* Write any register */
|
||||
|
|
Loading…
Add table
Reference in a new issue