Commit d1f3837a authored by Miquel Raynal's avatar Miquel Raynal

mtd: rawnand: Only use u8 instead of uint8_t in nand_chip structure

Mechanical change to avoid using old types.
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: default avatarBoris Brezillon <boris.brezillon@collabora.com>
Link: https://lore.kernel.org/linux-mtd/20200529111322.7184-3-miquel.raynal@bootlin.com
parent c4cabc08
...@@ -1141,13 +1141,13 @@ struct nand_chip { ...@@ -1141,13 +1141,13 @@ struct nand_chip {
int (*suspend)(struct nand_chip *chip); int (*suspend)(struct nand_chip *chip);
void (*resume)(struct nand_chip *chip); void (*resume)(struct nand_chip *chip);
uint8_t *oob_poi; u8 *oob_poi;
struct nand_controller *controller; struct nand_controller *controller;
struct nand_ecc_ctrl ecc; struct nand_ecc_ctrl ecc;
unsigned long buf_align; unsigned long buf_align;
uint8_t *bbt; u8 *bbt;
struct nand_bbt_descr *bbt_td; struct nand_bbt_descr *bbt_td;
struct nand_bbt_descr *bbt_md; struct nand_bbt_descr *bbt_md;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment