
26 Feb
2015
26 Feb
'15
10:15 a.m.
Hello Stephen,
diff --git a/include/configs/chromeos.h b/include/configs/chromeos.h
+/* Stringify a token */ +#ifndef STRINGIFY +#define _STRINGIFY(x) #x +#define STRINGIFY(x) _STRINGIFY(x) +#endif
Shouldn't that be in some common header so it isn't ever duplicated?
U-Boot has already __stringify(), so this should not be necessary at all.
Best Regards, Thomas