summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Lo <kevlo@cvs.openbsd.org>2017-10-27 11:23:29 +0000
committerKevin Lo <kevlo@cvs.openbsd.org>2017-10-27 11:23:29 +0000
commit0588a00afbed9628ee8035bf83d4ab32b37d8110 (patch)
treef4c00c88d0835c49d4b6a7a1b75a11da5e692017
parent7031c35900263267e37e1721aae330154f375982 (diff)
Remove duplicated function prototypes.
ok patrick@
-rw-r--r--sys/arch/armv7/dev/pluart.c3
-rw-r--r--sys/arch/armv7/exynos/exuart.c3
-rw-r--r--sys/arch/armv7/imx/imxuart.c3
3 files changed, 3 insertions, 6 deletions
diff --git a/sys/arch/armv7/dev/pluart.c b/sys/arch/armv7/dev/pluart.c
index 1e1ab7b68c5..b5af7b643b2 100644
--- a/sys/arch/armv7/dev/pluart.c
+++ b/sys/arch/armv7/dev/pluart.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pluart.c,v 1.5 2017/08/29 13:33:03 jsg Exp $ */
+/* $OpenBSD: pluart.c,v 1.6 2017/10/27 11:23:28 kevlo Exp $ */
/*
* Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
@@ -166,7 +166,6 @@ int pluartprobe(struct device *parent, void *self, void *aux);
void pluartattach(struct device *parent, struct device *self, void *aux);
void pluartcnprobe(struct consdev *cp);
-void pluartcnprobe(struct consdev *cp);
void pluartcninit(struct consdev *cp);
int pluartcnattach(bus_space_tag_t iot, bus_addr_t iobase, int rate,
tcflag_t cflag);
diff --git a/sys/arch/armv7/exynos/exuart.c b/sys/arch/armv7/exynos/exuart.c
index b2c473fcda5..fc7a216a63a 100644
--- a/sys/arch/armv7/exynos/exuart.c
+++ b/sys/arch/armv7/exynos/exuart.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: exuart.c,v 1.12 2017/08/29 13:33:03 jsg Exp $ */
+/* $OpenBSD: exuart.c,v 1.13 2017/10/27 11:23:28 kevlo Exp $ */
/*
* Copyright (c) 2005 Dale Rahn <drahn@motorola.com>
*
@@ -92,7 +92,6 @@ int exuartprobe(struct device *parent, void *self, void *aux);
void exuartattach(struct device *parent, struct device *self, void *aux);
void exuartcnprobe(struct consdev *cp);
-void exuartcnprobe(struct consdev *cp);
void exuartcninit(struct consdev *cp);
int exuartcnattach(bus_space_tag_t iot, bus_addr_t iobase, int rate,
tcflag_t cflag);
diff --git a/sys/arch/armv7/imx/imxuart.c b/sys/arch/armv7/imx/imxuart.c
index ac4554e2fd5..ed8744264d3 100644
--- a/sys/arch/armv7/imx/imxuart.c
+++ b/sys/arch/armv7/imx/imxuart.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: imxuart.c,v 1.15 2017/08/29 13:33:03 jsg Exp $ */
+/* $OpenBSD: imxuart.c,v 1.16 2017/10/27 11:23:28 kevlo Exp $ */
/*
* Copyright (c) 2005 Dale Rahn <drahn@motorola.com>
*
@@ -92,7 +92,6 @@ int imxuart_match(struct device *, void *, void *);
void imxuart_attach(struct device *, struct device *, void *);
void imxuartcnprobe(struct consdev *cp);
-void imxuartcnprobe(struct consdev *cp);
void imxuartcninit(struct consdev *cp);
int imxuartcnattach(bus_space_tag_t iot, bus_addr_t iobase, int rate,
tcflag_t cflag);