Hello Miquèl, On Mon, Aug 19, 2019 at 10:17:18AM +0200, Miquel Raynal wrote: > Marco Felsch <m.felsch@xxxxxxxxxxxxxx> wrote on Wed, 14 Aug 2019 > 10:22:32 +0200: > > +static int mt29f1g01aaadd_ooblayout_ecc(struct mtd_info *mtd, int section, > > + struct mtd_oob_region *region) > > +{ > > + if (section > 3) > > + return -ERANGE; > > + > > + region->offset = (section * 0x10) + 8; > > Any reason to use hex here? ^ > > If not I would prefer decimal numbers. IMHO it is quite common to use hexadecimal also for register offsets, not only for register values. I checked a few drivers (drivers/mtd/nand/raw/mxc_nand.c, drivers/clk/meson/g12a.c, drivers/gpio/gpio-sch.c) and they all use hex also for the offsets, so it seems to be at least usual. Also as offsets for repeating registers are usually powers of two, hexadecimal constants are more suitable IMHO. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König | Industrial Linux Solutions | http://www.pengutronix.de/ | ______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/