pc386/console/conscfg.c: Fix name of Edison console

This commit is contained in:
Joel Sherrill
2016-03-17 17:42:55 -05:00
parent 6c4aaf4f31
commit 0d2067c451

View File

@@ -49,13 +49,13 @@
{
register uint8_t val;
inport_byte( (addr + i),val );
inport_byte( (addr + i), val );
return val;
}
static void com_set_register(uint32_t addr, uint8_t i, uint8_t val)
{
outport_byte( (addr + i),val );
outport_byte( (addr + i), val );
}
extern bool pc386_com1_com4_enabled(int);
@@ -68,7 +68,7 @@
console_tbl Console_Configuration_Ports[] = {
#if (BSP_IS_EDISON == 1)
{
"/dev/vgacons", /* sDeviceName */
"/dev/com1", /* sDeviceName */
-1, /* deviceType */
&edison_fns, /* pDeviceFns */
NULL, /* deviceProbe */