Re: [PATCH 14/21] KGDB: KGDB arch support for ARM

From: Jan Kiszka
Date: Thu Jan 17 2008 - 08:14:14 EST


Jason Wessel wrote:
> Signed-off-by: Jason Wessel <jason.wessel@xxxxxxxxxxxxx>
>
...
> --- a/drivers/serial/pxa.c
> +++ b/drivers/serial/pxa.c
> @@ -42,6 +42,9 @@
> #include <linux/tty.h>
> #include <linux/tty_flip.h>
> #include <linux/serial_core.h>
> +#ifdef CONFIG_KGDB_CONSOLE
> +#include <linux/kgdb.h>
> +#endif
>
> #include <asm/io.h>
> #include <asm/hardware.h>
> @@ -690,6 +693,8 @@ serial_pxa_console_init(void)
> console_initcall(serial_pxa_console_init);
>
> #define PXA_CONSOLE &serial_pxa_console
> +#elif defined(CONFIG_KGDB_CONSOLE)
> +#define PXA_CONSOLE &kgdbcons
> #else
> #define PXA_CONSOLE NULL
> #endif

This is the only spot in the whole kgdb series where kgdbcons is used
outside its home kernel/kgdb.c. Is this really required in order to use
the kgdb console with PXA? And why is it like this only for this platform?

[Note that this forces kgdbcons to become non-static, ie. we will have
to fully initialize it, unlike it is done so far...]

Thanks,
Jan

--
Siemens AG, Corporate Technology, CT SE 2
Corporate Competence Center Embedded Linux
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/