Skip to content

Commit 873f7a1

Browse files
committed
m68k: sun3x: Fix signature of sun3_leds()
The sun3_leds() implementation for Sun3 in arch/m68k/sun3/leds.c, and the prototype in arch/m68k/sun3/sun3ints.c take an "unsigned char", not an "int". Align the dummy implementation for Sun3x with the Sun3 variant and the common caller. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/5214afb67eac58b8adae5710aea0980c2644ff24.1694613528.git.geert@linux-m68k.org
1 parent 88be4a4 commit 873f7a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/m68k/sun3x/config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ volatile char *clock_va;
2727

2828
extern void sun3_get_model(char *model);
2929

30-
void sun3_leds(unsigned int i)
30+
void sun3_leds(unsigned char byte)
3131
{
3232

3333
}

0 commit comments

Comments
 (0)