mirror of https://gitee.com/openkylin/linux.git
[ARM] 3299/1: S3C24XX - fix irq range on adc device
Patch from Ben Dooks Change the IRQ resource range for the ADC device to be two distinct IRQs Signed-off-by: Ben Dooks <ben-linux@fluff.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
5cba742935
commit
083d06edfd
|
@ -275,6 +275,11 @@ static struct resource s3c_adc_resource[] = {
|
||||||
},
|
},
|
||||||
[1] = {
|
[1] = {
|
||||||
.start = IRQ_TC,
|
.start = IRQ_TC,
|
||||||
|
.end = IRQ_TC,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
.start = IRQ_ADC,
|
||||||
.end = IRQ_ADC,
|
.end = IRQ_ADC,
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue