Merge tag 'vfs-5.10-merge-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
[linux-2.6-microblaze.git] / lib / cmdline.c
index 55768b4..fbb9981 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;