Not for the compiler :)
But when you are able to put things together that helps to understand
the code much better (at least for me). I'm not a wizard so when it
helps me to find code belonging together it probably helps other people
also.
Ok.
Hm - i found one by grep after 'hex2' in drivers/net/cxgb3/t3_hw.c :
static unsigned int hex2int(unsigned char c)
{
return isdigit(c) ? c - '0' : toupper(c) - 'A' + 10;
}
But nothing in lib/* ...
Same as stated above. If you would put the MODULE_PARM_DESC() right here
the formerly defined variables are documented in one go without any /*
comments */ and you just know the meaning for the rest of the review.
Why not? If it is not really needed it should be omitted.
In general i'm a friend of debug-code, but when i touches the mainline
kernel IMO one should reconsider if all the debug code remains necessary.
Sorry. Didn't catch that.
Regards,
Oliver
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html