diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2005-02-24 21:06:03 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2005-02-24 21:06:03 +0000 |
commit | 5a5ae1d045181e85c715c12d659c7baafbb307fe (patch) | |
tree | bb91feaf55abf257b7e6be78a47e3b4d320f20a4 /sys/arch/arm | |
parent | 1b1b859fa985c21b3e912c8c626de83003552724 (diff) |
Workaround for a suspend problem when building on the zaurus.
Diffstat (limited to 'sys/arch/arm')
-rw-r--r-- | sys/arch/arm/xscale/pxa2x0_apm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/arm/xscale/pxa2x0_apm.c b/sys/arch/arm/xscale/pxa2x0_apm.c index e843ce9c508..3176ed99c8b 100644 --- a/sys/arch/arm/xscale/pxa2x0_apm.c +++ b/sys/arch/arm/xscale/pxa2x0_apm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pxa2x0_apm.c,v 1.5 2005/02/23 02:08:01 uwe Exp $ */ +/* $OpenBSD: pxa2x0_apm.c,v 1.6 2005/02/24 21:06:02 drahn Exp $ */ /*- * Copyright (c) 2001 Alexander Guy. All rights reserved. @@ -209,9 +209,9 @@ void pxa2x0_pi2c_printregs(bus_space_tag_t, bus_space_handle_t); void pxa2x0_pi2c_print(struct pxa2x0_apm_softc *); /* XXX used in pxa2x0_apm_asm.S */ -bus_space_handle_t pxa2x0_gpio_ioh = 0; -bus_space_handle_t pxa2x0_clkman_ioh = 0; -bus_space_handle_t pxa2x0_memctl_ioh = 0; +bus_space_handle_t pxa2x0_gpio_ioh; +bus_space_handle_t pxa2x0_clkman_ioh; +bus_space_handle_t pxa2x0_memctl_ioh; /* pxa2x0_apm_asm.S */ void pxa27x_run_mode(void); |