console: Remove old fix for DEBUG_SMI

No longer needed as wrap_putchar() survives SMM relocation to TSEG.

Change-Id: I6143844b0b9902ef63baf3e5781a5dc4f54234be
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/5335
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
Kyösti Mälkki 2014-02-04 19:50:07 +02:00 committed by Patrick Georgi
parent b04e0fff7d
commit 77f43e9b43
3 changed files with 1 additions and 8 deletions

View File

@ -21,7 +21,7 @@ void do_putchar(unsigned char byte)
console_tx_byte(byte); console_tx_byte(byte);
} }
void wrap_putchar(unsigned char byte, void *data) static void wrap_putchar(unsigned char byte, void *data)
{ {
do_putchar(byte); do_putchar(byte);
} }
@ -61,4 +61,3 @@ void do_vtxprintf(const char *fmt, va_list args)
console_tx_flush(); console_tx_flush();
} }
#endif #endif

View File

@ -121,11 +121,6 @@ int vtxprintf(void (*tx_byte)(unsigned char byte, void *data),
int count; int count;
#if defined(__SMM__) && CONFIG_SMM_TSEG
/* Fix pointer in TSEG */
tx_byte = wrap_putchar;
#endif
for (count=0; *fmt ; ++fmt) { for (count=0; *fmt ; ++fmt) {
if (*fmt != '%') { if (*fmt != '%') {
call_tx(*fmt), count++; call_tx(*fmt), count++;

View File

@ -75,7 +75,6 @@ static inline void do_putchar(unsigned char byte) {}
int do_printk(int msg_level, const char *fmt, ...) __attribute__((format(printf, 2, 3))); int do_printk(int msg_level, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
void do_putchar(unsigned char byte); void do_putchar(unsigned char byte);
void wrap_putchar(unsigned char byte, void *data);
#define printk(LEVEL, fmt, args...) \ #define printk(LEVEL, fmt, args...) \
do { \ do { \