Commit d1f3837a authored by Miquel Raynal's avatar Miquel Raynal
Browse files

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

parent c4cabc08
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;