On Thursday, April 12, 2012 09:07:29 Antonio Quartulli wrote:
In case of not compiled-in components, we need to fake some functions in order to let the rest of the code correctly build. But instead of using something like:
We have to use:
static inline bla_init(struct bat_priv *bat_priv) { return 1; }
In this way the compiler can correctly check the type and the number of the arguments passed to the function, even if the related component (bla in this case) is not compiled.
Applied in revision 9b3b58e.
Thanks, Marek