Deleted Added
full compact
rk30xx_gpio.c (273652) rk30xx_gpio.c (278782)
1/*-
2 * Copyright (c) 2013 Ganbold Tsagaankhuu <ganbold@freebsd.org>
3 * Copyright (c) 2012 Oleksandr Tymoshenko <gonzo@freebsd.org>
4 * Copyright (c) 2012 Luiz Otavio O Souza.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 13 unchanged lines hidden (view full) ---

22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 */
29#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2013 Ganbold Tsagaankhuu <ganbold@freebsd.org>
3 * Copyright (c) 2012 Oleksandr Tymoshenko <gonzo@freebsd.org>
4 * Copyright (c) 2012 Luiz Otavio O Souza.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 13 unchanged lines hidden (view full) ---

22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 */
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: stable/10/sys/arm/rockchip/rk30xx_gpio.c 273652 2014-10-26 01:30:46Z ian $");
30__FBSDID("$FreeBSD: stable/10/sys/arm/rockchip/rk30xx_gpio.c 278782 2015-02-14 20:37:33Z loos $");
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/bus.h>
35
36#include <sys/kernel.h>
37#include <sys/module.h>
38#include <sys/rman.h>

--- 460 unchanged lines hidden (view full) ---

499 "pin %d", i);
500 func = rk30_gpio_get_function(sc, i);
501 sc->sc_gpio_pins[i].gp_pin = i;
502 sc->sc_gpio_pins[i].gp_caps = RK30_GPIO_DEFAULT_CAPS;
503 sc->sc_gpio_pins[i].gp_flags = rk30_gpio_func_flag(func);
504 }
505 sc->sc_gpio_npins = i;
506
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/bus.h>
35
36#include <sys/kernel.h>
37#include <sys/module.h>
38#include <sys/rman.h>

--- 460 unchanged lines hidden (view full) ---

499 "pin %d", i);
500 func = rk30_gpio_get_function(sc, i);
501 sc->sc_gpio_pins[i].gp_pin = i;
502 sc->sc_gpio_pins[i].gp_caps = RK30_GPIO_DEFAULT_CAPS;
503 sc->sc_gpio_pins[i].gp_flags = rk30_gpio_func_flag(func);
504 }
505 sc->sc_gpio_npins = i;
506
507 device_add_child(dev, "gpioc", device_get_unit(dev));
508 device_add_child(dev, "gpiobus", device_get_unit(dev));
507 device_add_child(dev, "gpioc", -1);
508 device_add_child(dev, "gpiobus", -1);
509
510 rk30_gpio_sc = sc;
511
512 rk30_gpio_init();
513
514 return (bus_generic_attach(dev));
515
516fail:

--- 160 unchanged lines hidden ---
509
510 rk30_gpio_sc = sc;
511
512 rk30_gpio_init();
513
514 return (bus_generic_attach(dev));
515
516fail:

--- 160 unchanged lines hidden ---