diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2018-05-31 09:13:00 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2018-05-31 09:13:00 +0000 |
commit | 4d9aeb25b75325536a32b31749e2a1fe9eee9490 (patch) | |
tree | 2bfcedc9843b93584d0e0302b2ed54844a84711b /sys/dev/fdt | |
parent | d315b26d9f140c430c33d4fc814886200ace4ddb (diff) |
Remove comcnspeed and comcnmode. They serve no purpose anymore. Configuring
the serial port speed can be done through the device tree and these days
everybody uses 8N1 for the mode.
ok patrick@, visa@, jsg@
Diffstat (limited to 'sys/dev/fdt')
-rw-r--r-- | sys/dev/fdt/imxuart.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/fdt/imxuart.c b/sys/dev/fdt/imxuart.c index 3880835ff59..7bb1c1be3d1 100644 --- a/sys/dev/fdt/imxuart.c +++ b/sys/dev/fdt/imxuart.c @@ -1,4 +1,4 @@ -/* $OpenBSD: imxuart.c,v 1.1 2018/03/29 20:33:53 patrick Exp $ */ +/* $OpenBSD: imxuart.c,v 1.2 2018/05/31 09:12:59 kettenis Exp $ */ /* * Copyright (c) 2005 Dale Rahn <drahn@motorola.com> * @@ -107,9 +107,6 @@ struct imxuart_softc *imxuart_sc(dev_t dev); int imxuart_intr(void *); -extern int comcnspeed; -extern int comcnmode; - /* XXX - we imitate 'com' serial ports and take over their entry points */ /* XXX: These belong elsewhere */ cdev_decl(com); |