summaryrefslogtreecommitdiffstats
path: root/src/superio/nsc/pc87366/pc87366.h
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@alterapraxis.com>2015-01-04 16:10:32 +1100
committerEdward O'Callaghan <eocallaghan@alterapraxis.com>2015-01-04 13:47:53 +0100
commitdb1a2fb3df73fe65381b52089fb890ba3c4f5122 (patch)
tree121eb4beb8ed3927fa43ef8cc1f239fd31eb9f52 /src/superio/nsc/pc87366/pc87366.h
parentfc4e8550afc5aab4af7801e2e008a8712f8c7795 (diff)
downloadcoreboot-db1a2fb3df73fe65381b52089fb890ba3c4f5122.tar.gz
coreboot-db1a2fb3df73fe65381b52089fb890ba3c4f5122.tar.bz2
coreboot-db1a2fb3df73fe65381b52089fb890ba3c4f5122.zip
superio/nsc/pc87366: Use link-time symbols over .c inclusion
Change-Id: Id156ca3c9a14c5bcc4d6cdb8434ca8efdac3139a Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/8077 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/superio/nsc/pc87366/pc87366.h')
-rw-r--r--src/superio/nsc/pc87366/pc87366.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/superio/nsc/pc87366/pc87366.h b/src/superio/nsc/pc87366/pc87366.h
index 8a1ede7a67b7..dea8ddf610c3 100644
--- a/src/superio/nsc/pc87366/pc87366.h
+++ b/src/superio/nsc/pc87366/pc87366.h
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef SUPERIO_NSC_PC87366_PC87366_H
-#define SUPERIO_NSC_PC87366_PC87366_H
+#ifndef SUPERIO_NSC_PC87366_H
+#define SUPERIO_NSC_PC87366_H
#define PC87366_FDC 0x00 /* Floppy */
#define PC87366_PP 0x01 /* Parallel port */
@@ -38,4 +38,9 @@
#define PC87366_VLM 0x0D
#define PC87366_TMS 0x0E
-#endif
+#include <arch/io.h>
+#include <stdint.h>
+
+void pc87366_enable_serial(pnp_devfn_t dev, u16 iobase);
+
+#endif /* SUPERIO_NSC_PC87366_H */