printk: remove the now unnecessary "C" annotation for KERN_CONT
[firefly-linux-kernel-4.4.55.git] / include / linux / printk.h
index 93a231f9835cae0bbf3b52d547ac465d6eba0ab1..9afc01e5a0a61ce5f4a9fe1e53ad6e0fb1b8e5bf 100644 (file)
@@ -13,7 +13,6 @@ static inline int printk_get_level(const char *buffer)
                switch (buffer[1]) {
                case '0' ... '7':
                case 'd':       /* KERN_DEFAULT */
-               case 'c':       /* KERN_CONT */
                        return buffer[1];
                }
        }
@@ -26,7 +25,6 @@ static inline const char *printk_skip_level(const char *buffer)
                switch (buffer[1]) {
                case '0' ... '7':
                case 'd':       /* KERN_DEFAULT */
-               case 'c':       /* KERN_CONT */
                        return buffer + 2;
                }
        }