mtd: spi-nor: Refactor spi_nor_read_id()
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>
Sun, 23 Feb 2020 17:37:13 +0000 (18:37 +0100)
committerTudor Ambarus <tudor.ambarus@microchip.com>
Thu, 27 Feb 2020 07:58:39 +0000 (09:58 +0200)
commit2dcbfe365b130321b1b48cfa55f7bdad6baf85ad
treec3839617fd00fb07ea62366413e4644ccd726063
parentdf5c21002cf4bb9c755c6330d101487c5d530c10
mtd: spi-nor: Refactor spi_nor_read_id()

- Don't use `tmp` for two purposes (return value, loop counter).
  Instead, use `i` for the loop counter, and `ret` for the return value.
- Don't use tabs between type and name in variable declarations,
  for consistency with other functions in spi-nor.c.
- Rewrite nested `if`s as `if (a && b)`.
- Remove `info` variable, and use spi_nor_ids[i] directly.

Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
[tudor.ambarus@microchip.com: change i's type from int to unsigned int,
reorder local variables]
Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
drivers/mtd/spi-nor/spi-nor.c