diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-03-22 17:46:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-03-22 17:46:03 +0000 |
commit | b873c705e432ab5be4377aa1856aef8d44a7a9f7 (patch) | |
tree | b52c6eeec778f084b1a611d3b27d866ebc8d3160 /sys/arch | |
parent | 43257ec08876fdec0bd9e9ad69d8a92b3ce3f4cc (diff) |
no need for a xxxpower function; ok drahn
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/beagle/dev/omap_com.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/arch/beagle/dev/omap_com.c b/sys/arch/beagle/dev/omap_com.c index 5a83d057ed8..d6c53e6df54 100644 --- a/sys/arch/beagle/dev/omap_com.c +++ b/sys/arch/beagle/dev/omap_com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: omap_com.c,v 1.4 2010/09/07 16:21:37 deraadt Exp $ */ +/* $OpenBSD: omap_com.c,v 1.5 2011/03/22 17:46:02 deraadt Exp $ */ /* * Copyright 2003 Wasabi Systems, Inc. * All rights reserved. @@ -58,7 +58,6 @@ int omapuart_match(struct device *, void *, void *); void omapuart_attach(struct device *, struct device *, void *); int omapuart_activate(struct device *, int); -void omapuart_power(int why, void *); struct cfattach com_ahb_ca = { sizeof (struct com_softc), omapuart_match, omapuart_attach, NULL, @@ -144,11 +143,3 @@ omapuart_activate(struct device *self, int act) } return 0; } - -#if 0 -void -omapuart_power(int why, void *arg) -{ - omapuart_activate(arg, why); -} -#endif |