[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[MiNT] [PATCH][6/7] Replace MSG_VERSION in USB storage module



Commit message:

MSG_VERSION should define the version not the name.
Besides 'version' argument in XHInqDriver shouldn't be bigger
than 7 characters. (See XHDI specification)
Contributed by David Galvez.
diff -r b6bdf44d4863 -r 7cc7d02fb296 sys/usb/src.km/udd/storage/usb_storage.c
--- a/sys/usb/src.km/udd/storage/usb_storage.c	Sun Apr 26 10:50:33 2015 +0200
+++ b/sys/usb/src.km/udd/storage/usb_storage.c	Sun Apr 26 11:02:34 2015 +0200
@@ -71,9 +71,9 @@
 #include "usb_storage.h"
 
 #ifdef TOSONLY
-#define MSG_VERSION "TOS DRIVERS"
+#define MSG_VERSION "1.0"
 #else
-#define MSG_VERSION "FreeMiNT DRIVERS"
+#define MSG_VERSION "1.0"
 #endif
 char *drv_version = MSG_VERSION;