blob: bb0aa63b12f3c4ca0eb0832eb9f68665573e5395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/*
* sm5701_irq.c
*
* Copyright (c) 2014 Silicon Mitus Co., Ltd
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
*/
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/device.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/mfd/sm5701_core.h>
#include <linux/gpio.h>
static irqreturn_t sm5701_irq_thread(int irq, void *data)
{
//printk("******* %s *******\n",__func__);
return IRQ_HANDLED;
}
int sm5701_irq_init(struct sm5701_dev *sm5701)
{
//printk("******* %s *******\n",__func__);
return 0;
}
EXPORT_SYMBOL(sm5701_irq_init);
void sm5701_irq_exit(struct sm5701_dev *sm5701)
{
//printk("******* %s *******\n",__func__);
}
EXPORT_SYMBOL(sm5701_irq_exit);
|