diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-07 13:11:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-07 13:11:37 +0000 |
commit | 85f603d4fd6d85c425502723a17daa94574977de (patch) | |
tree | 188a21432c3b8e8ddb8a08e9a09397164a88181c /debian/patches-rt/0016-printk-nbcon-Fix-kerneldoc-for-enums.patch | |
parent | Merging upstream version 6.9.7. (diff) | |
download | linux-85f603d4fd6d85c425502723a17daa94574977de.tar.xz linux-85f603d4fd6d85c425502723a17daa94574977de.zip |
Adding debian version 6.9.7-1.debian/6.9.7-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches-rt/0016-printk-nbcon-Fix-kerneldoc-for-enums.patch')
-rw-r--r-- | debian/patches-rt/0016-printk-nbcon-Fix-kerneldoc-for-enums.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/debian/patches-rt/0016-printk-nbcon-Fix-kerneldoc-for-enums.patch b/debian/patches-rt/0016-printk-nbcon-Fix-kerneldoc-for-enums.patch deleted file mode 100644 index 246deca24d..0000000000 --- a/debian/patches-rt/0016-printk-nbcon-Fix-kerneldoc-for-enums.patch +++ /dev/null @@ -1,36 +0,0 @@ -From: John Ogness <john.ogness@linutronix.de> -Date: Fri, 9 Feb 2024 10:46:58 +0000 -Subject: [PATCH 16/48] printk: nbcon: Fix kerneldoc for enums -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.8/older/patches-6.8.2-rt11.tar.xz - -Kerneldoc requires enums to be specified as such. Otherwise it is -interpreted as function documentation. - -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Reviewed-by: Randy Dunlap <rdunlap@infradead.org> -Reviewed-by: Petr Mladek <pmladek@suse.com> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - include/linux/console.h | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - ---- a/include/linux/console.h -+++ b/include/linux/console.h -@@ -137,7 +137,7 @@ static inline int con_debug_leave(void) - */ - - /** -- * cons_flags - General console flags -+ * enum cons_flags - General console flags - * @CON_PRINTBUFFER: Used by newly registered consoles to avoid duplicate - * output of messages that were already shown by boot - * consoles or read by userspace via syslog() syscall. -@@ -218,7 +218,7 @@ struct nbcon_state { - static_assert(sizeof(struct nbcon_state) <= sizeof(int)); - - /** -- * nbcon_prio - console owner priority for nbcon consoles -+ * enum nbcon_prio - console owner priority for nbcon consoles - * @NBCON_PRIO_NONE: Unused - * @NBCON_PRIO_NORMAL: Normal (non-emergency) usage - * @NBCON_PRIO_EMERGENCY: Emergency output (WARN/OOPS...) |