[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20240309203549.jj2l6epnznyjsrje@begin>
Date: Sat, 9 Mar 2024 21:35:49 +0100
From: Samuel Thibault <samuel.thibault@...-lyon.org>
To: gregkh@...uxfoundation.org
Cc: linux-kernel@...r.kernel.org, speakup@...ux-speakup.org
Subject: [PATCH] speakup: Fix warning for label at end of compound statement
Label at end of compound statements is a C2x extension, so add an empty instruction.
Signed-off-by: Samuel Thibault <samuel.thibault@...-lyon.org>
Reported-by: kernel test robot <lkp@...el.com>
Fixes: 807977260ae4 ("speakup: Add /dev/synthu device")
Closes: https://lore.kernel.org/oe-kbuild-all/202403090122.cpUNsozM-lkp@intel.com/
Index: linux-6.4/drivers/accessibility/speakup/devsynth.c
===================================================================
--- linux-6.4.orig/drivers/accessibility/speakup/devsynth.c
+++ linux-6.4/drivers/accessibility/speakup/devsynth.c
@@ -108,6 +108,7 @@ static ssize_t speakup_file_writeu(struc
break;
}
drop:
+ ;
}
count -= bytes;
Powered by blists - more mailing lists