Hi Andy, I forgot to put my mail addresses as well. I copied your answer now from the mailing list archive. Hence, sorry for the bad formatting of this mail. One question / remark down below. > On Sun, May 18, 2025 at 11:13:15AM +0000, Lothar Rubusch wrote: > > Evaluate the devicetree property for an optional interrupt line, and > > configure the interrupt mapping accordingly. When no interrupt line > > is defined in the devicetree, keep the FIFO in bypass mode as before. > > ... > > > + ret = regmap_write(data->regmap, ADXL313_REG_INT_MAP, regval); > > Don't you want to use regmap_assign_bits() or something like this to have > the above ternary be included? > Thank you so much. I guess this is a function I was looking for quite a while and I know several places where to use it. Anyway, I saw, my hardware test setup still runs on an older kernel w/o regmap_assign_bits(). So, I kindly liked to ask if you have any objections against leaving regmap_write() for now? Actually I'd prefer first to see the activity/inactivity stuff in, in case this will need some more modifications and I need to verify them on hardware. I think, leaving regmap_write() here would make that easier for this patch set. Please, let me know? I'm about to send a v2, for the follow up discussion. Best, L > > + if (ret) > > + return ret; >