m68k: sun3x: Remove unneeded semicolon

Fix the following coccicheck warning:

./arch/m68k/include/asm/sun3xflop.h:109:2-3: Unneeded semicolon

Signed-off-by: Wan Jiabing <wanjiabing@vivo.com>
Link: https://lore.kernel.org/r/20210415031450.23379-1-wanjiabing@vivo.com
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
This commit is contained in:
Wan Jiabing 2021-04-15 11:14:50 +08:00 committed by Geert Uytterhoeven
parent f829b4b212
commit 34e5269bf9
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ static void sun3x_82072_fd_outb(unsigned char value, int port)
case 4: /* FD_STATUS */
*(sun3x_fdc.status_r) = value;
break;
};
}
return;
}