diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-04-05 08:45:48 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-04-19 02:14:28 (GMT) |
commit | 8f6539d55919b8e013583df768312a2503f4125d (patch) | |
tree | e141e06fa6831f5500bafc7f9136be46ea252219 /arch | |
parent | f088fc84f94c1a36943e28ad704a9a740a35f877 (diff) | |
download | linux-fsl-qoriq-8f6539d55919b8e013583df768312a2503f4125d.tar.xz |
[MIPS] kgdb: Let gcc compute the array size itself.
This is the same method as used in the serial driver.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/mips-boards/generic/gdb_hook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mips-boards/generic/gdb_hook.c b/arch/mips/mips-boards/generic/gdb_hook.c index 91a2ccb..6a1854d 100644 --- a/arch/mips/mips-boards/generic/gdb_hook.c +++ b/arch/mips/mips-boards/generic/gdb_hook.c @@ -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 */ }; |