Skip to content

Commit 0c2a527

Browse files
committed
m68k: mvme16x: Remove unused sink in mvme16x_cons_write()
When building with W=1: arch/m68k/mvme16x/config.c: In function ‘mvme16x_cons_write’: arch/m68k/mvme16x/config.c:211:25: warning: variable ‘sink’ set but not used [-Wunused-but-set-variable] 211 | volatile u_char sink; | ^~~~ Fix this by removing the unused variable and assignment. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/22c4d1978f811d7f4495eeb269ce06304717627a.1694613528.git.geert@linux-m68k.org
1 parent 7f5514b commit 0c2a527

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

arch/m68k/mvme16x/config.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ static void __init mvme16x_init_IRQ (void)
208208
void mvme16x_cons_write(struct console *co, const char *str, unsigned count)
209209
{
210210
volatile unsigned char *base_addr = (u_char *)CD2401_ADDR;
211-
volatile u_char sink;
212211
u_char ier;
213212
int port;
214213
u_char do_lf = 0;
@@ -229,7 +228,7 @@ void mvme16x_cons_write(struct console *co, const char *str, unsigned count)
229228
if (in_8(PCCSCCTICR) & 0x20)
230229
{
231230
/* We have a Tx int. Acknowledge it */
232-
sink = in_8(PCCTPIACKR);
231+
in_8(PCCTPIACKR);
233232
if ((base_addr[CyLICR] >> 2) == port) {
234233
if (i == count) {
235234
/* Last char of string is now output */

0 commit comments

Comments
 (0)