diff options
| author | Olof Johansson <olof@lixom.net> | 2013-02-04 22:56:41 -0800 | 
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2013-02-04 22:56:41 -0800 | 
| commit | 469da62096e23adc755c1268b00b5fc7a214151b (patch) | |
| tree | fefd055fdae584e38d551f44d1339eb22cee4ed9 /drivers/mfd/db8500-prcmu.c | |
| parent | 4227961650884a06757f80877d5dce0bddc723d4 (diff) | |
| parent | 88b62b915b0b7e25870eb0604ed9a92ba4bfc9f7 (diff) | |
| download | olio-linux-3.10-469da62096e23adc755c1268b00b5fc7a214151b.tar.xz olio-linux-3.10-469da62096e23adc755c1268b00b5fc7a214151b.zip  | |
Merge tag 'v3.8-rc6' into next/soc
Linux 3.8-rc6
Diffstat (limited to 'drivers/mfd/db8500-prcmu.c')
| -rw-r--r-- | drivers/mfd/db8500-prcmu.c | 13 | 
1 files changed, 9 insertions, 4 deletions
diff --git a/drivers/mfd/db8500-prcmu.c b/drivers/mfd/db8500-prcmu.c index 13f4ccf2612..6fbe1c96a40 100644 --- a/drivers/mfd/db8500-prcmu.c +++ b/drivers/mfd/db8500-prcmu.c @@ -2524,7 +2524,7 @@ static bool read_mailbox_0(void)  		for (n = 0; n < NUM_PRCMU_WAKEUPS; n++) {  			if (ev & prcmu_irq_bit[n]) -				generic_handle_irq(IRQ_PRCMU_BASE + n); +				generic_handle_irq(irq_find_mapping(db8500_irq_domain, n));  		}  		r = true;  		break; @@ -2737,13 +2737,14 @@ static int db8500_irq_map(struct irq_domain *d, unsigned int virq,  }  static struct irq_domain_ops db8500_irq_ops = { -        .map    = db8500_irq_map, -        .xlate  = irq_domain_xlate_twocell, +	.map    = db8500_irq_map, +	.xlate  = irq_domain_xlate_twocell,  };  static int db8500_irq_init(struct device_node *np)  { -	int irq_base = -1; +	int irq_base = 0; +	int i;  	/* In the device tree case, just take some IRQs */  	if (!np) @@ -2758,6 +2759,10 @@ static int db8500_irq_init(struct device_node *np)  		return -ENOSYS;  	} +	/* All wakeups will be used, so create mappings for all */ +	for (i = 0; i < NUM_PRCMU_WAKEUPS; i++) +		irq_create_mapping(db8500_irq_domain, i); +  	return 0;  }  |