projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5cba742
)
[ARM] 3299/1: S3C24XX - fix irq range on adc device
author
Ben Dooks
<ben-linux@fluff.org>
Wed, 8 Feb 2006 22:03:31 +0000
(22:03 +0000)
committer
Russell King
<rmk+kernel@arm.linux.org.uk>
Wed, 8 Feb 2006 22:03:31 +0000
(22:03 +0000)
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>
arch/arm/mach-s3c2410/devs.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/arm/mach-s3c2410/devs.c
b/arch/arm/mach-s3c2410/devs.c
index b8d994a24d1c18173252feedadceb562449a2a23..0a47d38789a57467678b7a4e971b3c4b4e43bdb8 100644
(file)
--- a/
arch/arm/mach-s3c2410/devs.c
+++ b/
arch/arm/mach-s3c2410/devs.c
@@
-275,6
+275,11
@@
static struct resource s3c_adc_resource[] = {
},
[1] = {
.start = IRQ_TC,
+ .end = IRQ_TC,
+ .flags = IORESOURCE_IRQ,
+ },
+ [2] = {
+ .start = IRQ_ADC,
.end = IRQ_ADC,
.flags = IORESOURCE_IRQ,
}