Commit eda9c023 authored by Kukjin Kim's avatar Kukjin Kim

ARM: SAMSUNG: Change the 3rd HSMMC interrupt name for compatibility

This patch changes the 3rd HSMMC interrupt name for compatibility
from IRQ_MMC to IRQ_HSMMC3.
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 33f469d2
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
#define IRQ_IPC S5P_IRQ_VIC3(0) #define IRQ_IPC S5P_IRQ_VIC3(0)
#define IRQ_HOSTIF S5P_IRQ_VIC3(1) #define IRQ_HOSTIF S5P_IRQ_VIC3(1)
#define IRQ_MMC3 S5P_IRQ_VIC3(2) #define IRQ_HSMMC3 S5P_IRQ_VIC3(2)
#define IRQ_CEC S5P_IRQ_VIC3(3) #define IRQ_CEC S5P_IRQ_VIC3(3)
#define IRQ_TSI S5P_IRQ_VIC3(4) #define IRQ_TSI S5P_IRQ_VIC3(4)
#define IRQ_MDNIE0 S5P_IRQ_VIC3(5) #define IRQ_MDNIE0 S5P_IRQ_VIC3(5)
......
...@@ -68,6 +68,11 @@ ...@@ -68,6 +68,11 @@
#define IRQ_IIC COMBINER_IRQ(27, 0) #define IRQ_IIC COMBINER_IRQ(27, 0)
#define IRQ_HSMMC0 COMBINER_IRQ(29, 0)
#define IRQ_HSMMC1 COMBINER_IRQ(29, 1)
#define IRQ_HSMMC2 COMBINER_IRQ(29, 2)
#define IRQ_HSMMC3 COMBINER_IRQ(29, 3)
#define IRQ_ONENAND_AUDI COMBINER_IRQ(34, 0) #define IRQ_ONENAND_AUDI COMBINER_IRQ(34, 0)
/* Set the default NR_IRQS */ /* Set the default NR_IRQS */
......
...@@ -33,8 +33,8 @@ static struct resource s3c_hsmmc3_resource[] = { ...@@ -33,8 +33,8 @@ static struct resource s3c_hsmmc3_resource[] = {
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}, },
[1] = { [1] = {
.start = IRQ_MMC3, .start = IRQ_HSMMC3,
.end = IRQ_MMC3, .end = IRQ_HSMMC3,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
} }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment