aboutsummaryrefslogtreecommitdiff
path: root/src/include/console
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2014-01-28 11:34:38 +0200
committerPatrick Georgi <patrick@georgi-clan.de>2014-04-09 13:28:33 +0200
commitdbc7bd9dce2d188dd48de7acd5754507ff0c87e5 (patch)
treed5539c092fa6c3cfe7650703e1c38b4858d2db45 /src/include/console
parent77f43e9b43894f6cdeaab29b2960796b1e3a219e (diff)
console: Refactor uart8250/NE2K
Do this for symmetry with romstage_console.c. Change-Id: If17acfc3da07b1dbefa87162c3c7168deb7b354a Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/5330 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/include/console')
-rw-r--r--src/include/console/ne2k.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/console/ne2k.h b/src/include/console/ne2k.h
index 62424f14fd..cb3c1ec63b 100644
--- a/src/include/console/ne2k.h
+++ b/src/include/console/ne2k.h
@@ -22,4 +22,8 @@
void ne2k_append_data(unsigned char *d, int len, unsigned int base);
int ne2k_init(unsigned int eth_nic_base);
void ne2k_transmit(unsigned int eth_nic_base);
+
+#ifndef __ROMCC__
+#define ne2k_append_data_byte(d, base) ne2k_append_data(&d, 1, base)
+#endif
#endif /* _NE2K_H */