Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 242954
b: refs/heads/master
c: 8317d51
h: refs/heads/master
v: v3
  • Loading branch information
Samuel Ortiz committed Mar 26, 2011
1 parent 0b2fea6 commit 5cf4bc8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d6f7ce9f7fde069424e6400c31717ef34aab7e5f
refs/heads/master: 8317d5178e7491589693693e5a7f64442cf46ca2
16 changes: 8 additions & 8 deletions trunk/drivers/mfd/max8997-irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,14 @@ static const struct max8997_irq_data max8997_irqs[] = {

static void max8997_irq_lock(struct irq_data *data)
{
struct max8997_dev *max8997 = get_irq_chip_data(data->irq);
struct max8997_dev *max8997 = irq_get_chip_data(data->irq);

mutex_lock(&max8997->irqlock);
}

static void max8997_irq_sync_unlock(struct irq_data *data)
{
struct max8997_dev *max8997 = get_irq_chip_data(data->irq);
struct max8997_dev *max8997 = irq_get_chip_data(data->irq);
int i;

for (i = 0; i < MAX8997_IRQ_GROUP_NR; i++) {
Expand All @@ -149,7 +149,7 @@ irq_to_max8997_irq(struct max8997_dev *max8997, int irq)

static void max8997_irq_mask(struct irq_data *data)
{
struct max8997_dev *max8997 = get_irq_chip_data(data->irq);
struct max8997_dev *max8997 = irq_get_chip_data(data->irq);
const struct max8997_irq_data *irq_data = irq_to_max8997_irq(max8997,
data->irq);

Expand All @@ -158,7 +158,7 @@ static void max8997_irq_mask(struct irq_data *data)

static void max8997_irq_unmask(struct irq_data *data)
{
struct max8997_dev *max8997 = get_irq_chip_data(data->irq);
struct max8997_dev *max8997 = irq_get_chip_data(data->irq);
const struct max8997_irq_data *irq_data = irq_to_max8997_irq(max8997,
data->irq);

Expand Down Expand Up @@ -332,14 +332,14 @@ int max8997_irq_init(struct max8997_dev *max8997)
/* Register with genirq */
for (i = 0; i < MAX8997_IRQ_NR; i++) {
cur_irq = i + max8997->irq_base;
set_irq_chip_data(cur_irq, max8997);
set_irq_chip_and_handler(cur_irq, &max8997_irq_chip,
irq_set_chip_data(cur_irq, max8997);
irq_set_chip_and_handler(cur_irq, &max8997_irq_chip,
handle_edge_irq);
set_irq_nested_thread(cur_irq, 1);
irq_set_nested_thread(cur_irq, 1);
#ifdef CONFIG_ARM
set_irq_flags(cur_irq, IRQF_VALID);
#else
set_irq_noprobe(cur_irq);
irq_set_noprobe(cur_irq);
#endif
}

Expand Down

0 comments on commit 5cf4bc8

Please sign in to comment.