Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8f6539d5 authored by Ralf Baechle's avatar Ralf Baechle
Browse files

[MIPS] kgdb: Let gcc compute the array size itself.



This is the same method as used in the serial driver.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent f088fc84
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
#include <asm/serial.h>
#include <asm/io.h>

static struct serial_state rs_table[RS_TABLE_SIZE] = {
static struct serial_state rs_table[] = {
	SERIAL_PORT_DFNS	/* Defined in serial.h */
};