Staging: mt29f_spinand: Use preferred kernel types
authorEva Rachel Retuya <eraretuya@gmail.com>
Fri, 23 Oct 2015 16:13:19 +0000 (00:13 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Oct 2015 01:34:23 +0000 (18:34 -0700)
Replace remaining instances of 'uint8_t' with 'u8' for consistency since
'u8' and 'u16' are already being used in other parts of the code.

Replace also 'uint32_t' with 'u32' on the header file.
Checkpatch pointed out this issue.

CHECK: Prefer kernel type 'u8' over 'uint8_t'
CHECK: Prefer kernel type 'u32' over 'uint32_t'

Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/mt29f_spinand/mt29f_spinand.c
drivers/staging/mt29f_spinand/mt29f_spinand.h

index 7691417eebd66e2231bb9b469b7dc4ef3deed8ad..3d1696c8e9e5e35cee967c20fc1eaaf380301de1 100644 (file)
@@ -145,7 +145,7 @@ static int spinand_read_id(struct spi_device *spi_nand, u8 *id)
  *    Once the status turns to be ready, the other status bits also are
  *    valid status bits.
  */
-static int spinand_read_status(struct spi_device *spi_nand, uint8_t *status)
+static int spinand_read_status(struct spi_device *spi_nand, u8 *status)
 {
        struct spinand_cmd cmd = {0};
        int ret;
@@ -478,7 +478,7 @@ static int spinand_program_page(struct spi_device *spi_nand,
 {
        int retval;
        u8 status = 0;
-       uint8_t *wbuf;
+       u8 *wbuf;
 #ifdef CONFIG_MTD_SPINAND_ONDIEECC
        unsigned int i, j;
 
@@ -613,9 +613,9 @@ static int spinand_erase_block(struct spi_device *spi_nand, u16 block_id)
 
 #ifdef CONFIG_MTD_SPINAND_ONDIEECC
 static int spinand_write_page_hwecc(struct mtd_info *mtd,
-               struct nand_chip *chip, const uint8_t *buf, int oob_required)
+               struct nand_chip *chip, const u8 *buf, int oob_required)
 {
-       const uint8_t *p = buf;
+       const u8 *p = buf;
        int eccsize = chip->ecc.size;
        int eccsteps = chip->ecc.steps;
 
@@ -625,11 +625,11 @@ static int spinand_write_page_hwecc(struct mtd_info *mtd,
 }
 
 static int spinand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
-               uint8_t *buf, int oob_required, int page)
+               u8 *buf, int oob_required, int page)
 {
        int retval;
        u8 status;
-       uint8_t *p = buf;
+       u8 *p = buf;
        int eccsize = chip->ecc.size;
        int eccsteps = chip->ecc.steps;
        struct spinand_info *info = (struct spinand_info *)chip->priv;
@@ -667,7 +667,7 @@ static void spinand_select_chip(struct mtd_info *mtd, int dev)
 {
 }
 
-static uint8_t spinand_read_byte(struct mtd_info *mtd)
+static u8 spinand_read_byte(struct mtd_info *mtd)
 {
        struct spinand_state *state = mtd_to_state(mtd);
        u8 data;
@@ -707,7 +707,7 @@ static int spinand_wait(struct mtd_info *mtd, struct nand_chip *chip)
        return 0;
 }
 
-static void spinand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
+static void spinand_write_buf(struct mtd_info *mtd, const u8 *buf, int len)
 {
        struct spinand_state *state = mtd_to_state(mtd);
 
@@ -715,7 +715,7 @@ static void spinand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
        state->buf_ptr += len;
 }
 
-static void spinand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
+static void spinand_read_buf(struct mtd_info *mtd, u8 *buf, int len)
 {
        struct spinand_state *state = mtd_to_state(mtd);
 
index 6c8e413b5b632d005d3693a985f9bf2e71a943dc..fe6c15a50c35136944e2bc6d679a98c5d0067443 100644 (file)
@@ -84,8 +84,8 @@ struct spinand_info {
 };
 
 struct spinand_state {
-       uint32_t        col;
-       uint32_t        row;
+       u32     col;
+       u32     row;
        int             buf_ptr;
        u8              *buf;
 };