diff options
author | Marek Vasut <marex@denx.de> | 2015-09-03 18:35:37 +0200 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-09-11 15:48:43 -0700 |
commit | 61528d888adf9470db73aaadf1ff9ca35942262a (patch) | |
tree | d83f422127c6865eb30539a0ac0624a73291362f /include/linux | |
parent | 11bff0b70cc003b995cf4c2acec4adab90957b02 (diff) | |
download | linux-stable-61528d888adf9470db73aaadf1ff9ca35942262a.tar.gz linux-stable-61528d888adf9470db73aaadf1ff9ca35942262a.tar.bz2 linux-stable-61528d888adf9470db73aaadf1ff9ca35942262a.zip |
mtd: nand: Rename nand_chip .dn to .flash_node
Use a more descriptive name for the device_node element in struct nand_chip .
This name matches the element name used for device_node property of a flash
in the spi-nor framework.
Signed-off-by: Marek Vasut <marex@denx.de>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/mtd/nand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h index 272f42952f34..3140b3d94838 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h @@ -544,7 +544,7 @@ struct nand_buffers { * flash device * @IO_ADDR_W: [BOARDSPECIFIC] address to write the 8 I/O lines of the * flash device. - * @dn: [BOARDSPECIFIC] device node describing this instance + * @flash_node: [BOARDSPECIFIC] device node describing this instance * @read_byte: [REPLACEABLE] read one byte from the chip * @read_word: [REPLACEABLE] read one word from the chip * @write_byte: [REPLACEABLE] write a single byte to the chip on the @@ -647,7 +647,7 @@ struct nand_chip { void __iomem *IO_ADDR_R; void __iomem *IO_ADDR_W; - struct device_node *dn; + struct device_node *flash_node; uint8_t (*read_byte)(struct mtd_info *mtd); u16 (*read_word)(struct mtd_info *mtd); |