In the 2.1.68 patch, I notice changes like this:
-// priv->phyOnline = 1;
+/* priv->phyOnline = 1; */
The ISO has decided to make C++ comments legal in C.
That doesn't make them right.
This means you should adjust your gcc config, not hack
the nice new-style comments out of the kernel.
Those old-style comments are not good.
Why... /* */ should work everywhere. Why not go for lowest common
denominator?
-Chris (hoping this doesn't become a religious debate about comment
styles...)