On Fri, Nov 8, 2024 at 11:56 AM Matteo Martelli <matteomartelli3@xxxxxxxxx> wrote: > On Fri, 8 Nov 2024 11:23:18 +0200, Andy Shevchenko <andy.shevchenko@xxxxxxxxx> wrote: > > On Fri, Nov 8, 2024 at 10:52 AM <victor.duicu@xxxxxxxxxxxxx> wrote: ... > > > +static inline bool pac1921_shunt_is_valid(u32 shunt_val) > > > +{ > > > + return shunt_val > 0 && shunt_val <= INT_MAX; > > > +} > > > > This basically is the (shunt_val - 1) & BIT(31) which can be used > > inline in the caller. Hence, drop this function and use the check > > inline. See also below. > > I think the current comparison check is more clear. Also my suggestion > to move the check in a seperate function was to keep it consistent in > different places since such check can change in future and one might > change it only in one place, as it was happening during the first > iterations of this series. However I am fine to remove the function and > move the check back inline in the caller as the check is now only in two > places and it shouldn't be a big deal. Up to you. But then drop the comment (which kinda useless) in the caller and add in the callee, i.e. in this helper to explain the range of valid values more clearly, ideally with reference to datasheet text or so. -- With Best Regards, Andy Shevchenko