diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2020-05-29 13:12:56 +0200 |
---|---|---|
committer | Miquel Raynal <miquel.raynal@bootlin.com> | 2020-06-26 08:35:04 +0200 |
commit | d1f3837a507d73746f9e2118fad20ee5e57e86cc (patch) | |
tree | 5445c0b82bb8cdb690272791248d79b334003d86 /include/linux/mtd | |
parent | c4cabc08d09e4b107b685e08bdec8a38a91089d8 (diff) | |
download | lwn-d1f3837a507d73746f9e2118fad20ee5e57e86cc.tar.gz lwn-d1f3837a507d73746f9e2118fad20ee5e57e86cc.zip |
mtd: rawnand: Only use u8 instead of uint8_t in nand_chip structure
Mechanical change to avoid using old types.
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Link: https://lore.kernel.org/linux-mtd/20200529111322.7184-3-miquel.raynal@bootlin.com
Diffstat (limited to 'include/linux/mtd')
-rw-r--r-- | include/linux/mtd/rawnand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mtd/rawnand.h b/include/linux/mtd/rawnand.h index 830f2d08937f..cea137778224 100644 --- a/include/linux/mtd/rawnand.h +++ b/include/linux/mtd/rawnand.h @@ -1141,13 +1141,13 @@ struct nand_chip { int (*suspend)(struct nand_chip *chip); void (*resume)(struct nand_chip *chip); - uint8_t *oob_poi; + u8 *oob_poi; struct nand_controller *controller; struct nand_ecc_ctrl ecc; unsigned long buf_align; - uint8_t *bbt; + u8 *bbt; struct nand_bbt_descr *bbt_td; struct nand_bbt_descr *bbt_md; |