Hi,

What is the suggested way(s) to fix this warning:

../kernel/sched/fair.c:7584: WARNING: Inline emphasis start-string without 
end-string.

from this source:

 * this CPU.  The amount of the imbalance is returned in *imbalance.


I have a patch that changes that to env->imbalance, but what I am really looking
for is a way to include a '*' in the kernel-doc, for cases like this:

/**
 * foofunc - do the bar and update its value
 * @bar: pointer to input value, to be updated for return
 *
 * fu the *bar with baz
 */
void foofunc(unsigned long long *bar, unsigned long long baz)
{
        *bar = *bar + 42 * baz;
        *bar %= baz;
}


thanks.
-- 
~Randy
--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to