|
@@ -28,6 +28,7 @@
|
|
#include <fat.h>
|
|
#include <fat.h>
|
|
#include <asm/byteorder.h>
|
|
#include <asm/byteorder.h>
|
|
#include <part.h>
|
|
#include <part.h>
|
|
|
|
+#include <linux/ctype.h>
|
|
#include "fat.c"
|
|
#include "fat.c"
|
|
|
|
|
|
static void uppercase(char *str, int len)
|
|
static void uppercase(char *str, int len)
|
|
@@ -35,7 +36,7 @@ static void uppercase(char *str, int len)
|
|
int i;
|
|
int i;
|
|
|
|
|
|
for (i = 0; i < len; i++) {
|
|
for (i = 0; i < len; i++) {
|
|
- TOUPPER(*str);
|
|
|
|
|
|
+ *str = toupper(*str);
|
|
str++;
|
|
str++;
|
|
}
|
|
}
|
|
}
|
|
}
|