mtk-eint.c (c74a7469f97c0f40b46e82ee979f9fb1bb6e847c) mtk-eint.c (a8cfcf15c91455750ecb5213ad1cbe5d9b3ec2ef)
1// SPDX-License-Identifier: GPL-2.0
2// Copyright (c) 2014-2018 MediaTek Inc.
3
4/*
5 * Library for MediaTek External Interrupt Support
6 *
7 * Author: Maoguang Meng <maoguang.meng@mediatek.com>
8 * Sean Wang <sean.wang@mediatek.com>
9 *
10 */
11
12#include <linux/delay.h>
13#include <linux/err.h>
14#include <linux/gpio.h>
15#include <linux/io.h>
1// SPDX-License-Identifier: GPL-2.0
2// Copyright (c) 2014-2018 MediaTek Inc.
3
4/*
5 * Library for MediaTek External Interrupt Support
6 *
7 * Author: Maoguang Meng <maoguang.meng@mediatek.com>
8 * Sean Wang <sean.wang@mediatek.com>
9 *
10 */
11
12#include <linux/delay.h>
13#include <linux/err.h>
14#include <linux/gpio.h>
15#include <linux/io.h>
16#include <linux/irqchip/chained_irq.h>
16#include <linux/irqdomain.h>
17#include <linux/of_irq.h>
18#include <linux/platform_device.h>
19
20#include "mtk-eint.h"
21
22#define MTK_EINT_EDGE_SENSITIVE 0
23#define MTK_EINT_LEVEL_SENSITIVE 1

--- 469 unchanged lines hidden ---
17#include <linux/irqdomain.h>
18#include <linux/of_irq.h>
19#include <linux/platform_device.h>
20
21#include "mtk-eint.h"
22
23#define MTK_EINT_EDGE_SENSITIVE 0
24#define MTK_EINT_LEVEL_SENSITIVE 1

--- 469 unchanged lines hidden ---