On Sat, May 30, 2020 at 01:29:52PM +0300, Vladimir Oltean wrote: > From: Vladimir Oltean <vladimir.olt...@nxp.com> > > Newer compilers complain with W=1 builds that there are non-static > functions defined in sja1105_static_config.c that don't have a > prototype, because their prototype is defined in sja1105.h which this > translation unit does not include. > > I don't entirely understand what is the point of these warnings, since > in principle there's nothing wrong with that.
Hi Vladimir The issue here is that the header might have a typo and have a different signature than the function itself. The caller than passes the parameters in the wrong way. Best case it segfault/Opps, but it can introduce subtle bugs which are hard to find. Andrew