superio/nuvoton/nct5104d: Avoid .c includes

Following the same reasoning as commit
d304331 superio/fintek/f81865f: Avoid .c includes
Clean up the early_serial #include directives in mainboard/romstage
code.

Change-Id: I14c438968bfed917977862efd8a393ec48cb04c9
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/5446
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
Edward O'Callaghan 2014-04-03 03:19:41 +11:00 committed by Alexandru Gagniuc
parent 793a429eb5
commit 3c04917a00
3 changed files with 5 additions and 5 deletions

View File

@ -20,4 +20,3 @@
romstage-$(CONFIG_SUPERIO_NUVOTON_NCT5104D) += early_init.c
ramstage-$(CONFIG_SUPERIO_NUVOTON_NCT5104D) += superio.c

View File

@ -19,8 +19,7 @@
*/
#include <arch/io.h>
#include <arch/romcc_io.h>
#include <device/pnp_def.h>
#include <device/pnp.h>
#include "nct5104d.h"
static void pnp_enter_extended_mode(device_t dev)
@ -36,7 +35,7 @@ static void pnp_exit_extended_mode(device_t dev)
outb(0xaa,port);
}
static void nct5104d_enable_serial(device_t dev, u16 iobase)
void nct5104d_enable_serial(device_t dev, u16 iobase)
{
pnp_enter_extended_mode(dev);
pnp_set_logical_device(dev);

View File

@ -37,4 +37,6 @@
#define NCT5104D_GPIO1 ((1 << 8) | NCT5104D_GPIO_V)
#define NCT5104D_GPIO6 ((6 << 8) | NCT5104D_GPIO_V)
#endif
void nct5104d_enable_serial(device_t dev, u16 iobase);
#endif /* SUPERIO_NUVOTON_NCT5104D_NCT5104D_H */