Hi Alexandre, On Fri, Nov 30, 2018 at 1:32 PM Alexandre Belloni <alexandre.belloni@xxxxxxxxxxx> wrote: > On 30/11/2018 12:05:16+0100, Geert Uytterhoeven wrote: > > On Thu, Nov 29, 2018 at 6:03 PM Biju Das <biju.das@xxxxxxxxxxxxxx> wrote: > > > Add support for NXP pcf85263 real-time clock. pcf85263 rtc is compatible > > > with pcf85363,except that pcf85363 has additional 64 bytes of RAM. > > > > > > 1 byte of nvmem is supported and exposed in sysfs (# is the instance > > > number,starting with 0): /sys/bus/nvmem/devices/pcf85x63-#/nvmem > > > > > > Signed-off-by: Biju Das <biju.das@xxxxxxxxxxxxxx> > > > --- > > > V1-->V2 Incorporated Alexandre and Geert's review comment. > > > > Thanks for the update! > > > > > --- a/drivers/rtc/rtc-pcf85363.c > > > +++ b/drivers/rtc/rtc-pcf85363.c > > > > > @@ -321,15 +344,25 @@ static int pcf85363_probe(struct i2c_client *client, > > > const struct i2c_device_id *id) > > > { > > > struct pcf85363 *pcf85363; > > > - struct nvmem_config nvmem_cfg = { > > > - .name = "pcf85363-", > > > - .word_size = 1, > > > - .stride = 1, > > > - .size = NVRAM_SIZE, > > > - .reg_read = pcf85363_nvram_read, > > > - .reg_write = pcf85363_nvram_write, > > > + const struct regmap_config *regmap_config = &pcf_85363_regmap_config; > > > + struct nvmem_config nvmem_cfg[] = { > > > > static? > > > > Although the nvmem_config is copied, and thus static is not needed, I > > guess using static will decrease kernel size. > > > > Hum, I don't think, this is on the stack anyway. If you make it static, it's no longer allocated on the stack, and gcc has no longer to emit code to initialize all members. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds