gpio.c (7ae9fb1b7ecbb5d85d07857943f677fd1a559b18) | gpio.c (a99cc66807d6c854a7f65f962766c530c91be149) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * QUICC Engine GPIOs 4 * 5 * Copyright (c) MontaVista Software, Inc. 2008. 6 * 7 * Author: Anton Vorontsov <avorontsov@ru.mvista.com> 8 */ 9 10#include <linux/kernel.h> 11#include <linux/init.h> 12#include <linux/spinlock.h> 13#include <linux/err.h> 14#include <linux/io.h> 15#include <linux/of.h> | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * QUICC Engine GPIOs 4 * 5 * Copyright (c) MontaVista Software, Inc. 2008. 6 * 7 * Author: Anton Vorontsov <avorontsov@ru.mvista.com> 8 */ 9 10#include <linux/kernel.h> 11#include <linux/init.h> 12#include <linux/spinlock.h> 13#include <linux/err.h> 14#include <linux/io.h> 15#include <linux/of.h> |
16#include <linux/of_gpio.h> /* for of_mm_gpio_chip */ | 16#include <linux/gpio/legacy-of-mm-gpiochip.h> |
17#include <linux/gpio/consumer.h> 18#include <linux/gpio/driver.h> 19#include <linux/slab.h> 20#include <linux/export.h> 21#include <linux/property.h> 22 23#include <soc/fsl/qe/qe.h> 24 --- 311 unchanged lines hidden --- | 17#include <linux/gpio/consumer.h> 18#include <linux/gpio/driver.h> 19#include <linux/slab.h> 20#include <linux/export.h> 21#include <linux/property.h> 22 23#include <soc/fsl/qe/qe.h> 24 --- 311 unchanged lines hidden --- |