lib: Revert use of fallthrough pseudo-keyword in lib/
[linux-2.6-block.git] / lib / cmdline.c
index 55768b4f3f587f709cf9940f1dea471574fe855d..fbb9981a04a41b0e5c5599340362aa50f1e2f5c6 100644 (file)
@@ -132,23 +132,23 @@ unsigned long long memparse(const char *ptr, char **retptr)
        case 'E':
        case 'e':
                ret <<= 10;
-               fallthrough;
+               /* fall through */
        case 'P':
        case 'p':
                ret <<= 10;
-               fallthrough;
+               /* fall through */
        case 'T':
        case 't':
                ret <<= 10;
-               fallthrough;
+               /* fall through */
        case 'G':
        case 'g':
                ret <<= 10;
-               fallthrough;
+               /* fall through */
        case 'M':
        case 'm':
                ret <<= 10;
-               fallthrough;
+               /* fall through */
        case 'K':
        case 'k':
                ret <<= 10;