diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-08-28 20:20:38 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-08-28 20:20:38 +0000 |
commit | cf2c825baad4dbe18efce156321eb17692efad53 (patch) | |
tree | b2be8678fe447ef3c6f5856585ba3792411a359d /sys/arch/armv7 | |
parent | 6dfb23cbbe830f3b68cae239798e26e54cf57518 (diff) |
Get rid of sxipio_ioh and sxipio_iot; they're not used (anymore).
Diffstat (limited to 'sys/arch/armv7')
-rw-r--r-- | sys/arch/armv7/sunxi/sxipio.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/arch/armv7/sunxi/sxipio.c b/sys/arch/armv7/sunxi/sxipio.c index a5129384496..744018402dd 100644 --- a/sys/arch/armv7/sunxi/sxipio.c +++ b/sys/arch/armv7/sunxi/sxipio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sxipio.c,v 1.12 2016/08/28 17:31:44 kettenis Exp $ */ +/* $OpenBSD: sxipio.c,v 1.13 2016/08/28 20:20:37 kettenis Exp $ */ /* * Copyright (c) 2010 Miodrag Vallat. * Copyright (c) 2013 Artturi Alm @@ -108,8 +108,6 @@ int sxipio_get_pin(void *, uint32_t *); void sxipio_set_pin(void *, uint32_t *, int); struct sxipio_softc *sxipio_sc = NULL; -bus_space_tag_t sxipio_iot; -bus_space_handle_t sxipio_ioh; #include "sxipio_pins.h" @@ -151,11 +149,10 @@ sxipio_attach(struct device *parent, struct device *self, void *args) /* XXX check unit, bail if != 0 */ - sc->sc_iot = sxipio_iot = aa->aa_iot; - if (bus_space_map(sxipio_iot, aa->aa_dev->mem[0].addr, + sc->sc_iot = aa->aa_iot; + if (bus_space_map(sc->sc_iot, aa->aa_dev->mem[0].addr, aa->aa_dev->mem[0].size, 0, &sc->sc_ioh)) panic("sxipio_attach: bus_space_map failed!"); - sxipio_ioh = sc->sc_ioh; sxipio_sc = sc; |