On Fri, Aug 9, 2013 at 2:40 PM, Stephen Hemminger stephen@networkplumber.org wrote:
+extern const struct driver_info ax88172a_info;
You could drop the 'extern' here.
All other function prototypes in this header file do not use 'extern'.
That is data, not function prototype, so yes extern is needed.
You are right, sorry for the noise.