diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/mtd/nand.h | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h index 82704de08..f63e04b63 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h @@ -85,8 +85,10 @@ extern void nand_wait_ready(struct mtd_info *mtd);  #define NAND_CMD_RESET		0xff  #define NAND_CMD_LOCK		0x2a +#define NAND_CMD_LOCK_TIGHT	0x2c  #define NAND_CMD_UNLOCK1	0x23  #define NAND_CMD_UNLOCK2	0x24 +#define NAND_CMD_LOCK_STATUS	0x7a  /* Extended commands for large page devices */  #define NAND_CMD_READSTART	0x30 @@ -205,9 +207,6 @@ typedef enum {  #define NAND_SUBPAGE_READ(chip) ((chip->ecc.mode == NAND_ECC_SOFT) \  					&& (chip->page_shift > 9)) -/* Mask to zero out the chip options, which come from the id table */ -#define NAND_CHIPOPTIONS_MSK	(0x0000ffff & ~NAND_NO_AUTOINCR) -  /* Non chip related options */  /*   * Use a flash based bad block table. OOB identifier is saved in OOB area. @@ -391,9 +390,10 @@ struct nand_ecc_ctrl {   * consecutive order.   */  struct nand_buffers { -	uint8_t	ecccalc[NAND_MAX_OOBSIZE]; -	uint8_t	ecccode[NAND_MAX_OOBSIZE]; -	uint8_t databuf[NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE]; +	uint8_t	ecccalc[ALIGN(NAND_MAX_OOBSIZE, ARCH_DMA_MINALIGN)]; +	uint8_t	ecccode[ALIGN(NAND_MAX_OOBSIZE, ARCH_DMA_MINALIGN)]; +	uint8_t databuf[ALIGN(NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE, +			      ARCH_DMA_MINALIGN)];  };  /**  |