compile fails with the following message:
> In file included from ohci-hcd.c:136:
> ohci-dbg.c:318: parse error
> make[3]: *** [ohci-hcd.o] Error 1
due to a missing #include <linux/version.h>
Here is a trivial patch for this.
--- linux-2.5.38/drivers/usb/host/ohci-hcd.c Sun Sep 22 06:25:00 2002
+++ l-2.5.38/drivers/usb/host/ohci-hcd.c Sun Sep 22 23:47:37 2002
@@ -92,6 +92,7 @@
#endif
#include <linux/usb.h>
+#include <linux/version.h>
#include "../core/hcd.h"
#include <asm/io.h>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/