Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'renesas-sh-drivers-for-v3.17' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas

Pull SH driver fix from Simon Horman:
"Confine SH_INTC to platforms that need it"

* tag 'renesas-sh-drivers-for-v3.17' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas:
sh: intc: Confine SH_INTC to platforms that need it

+11 -3
+2
arch/arm/mach-shmobile/Kconfig
··· 75 75 select ARM_CPU_SUSPEND if PM || CPU_IDLE 76 76 select CPU_V7 77 77 select SH_CLK_CPG 78 + select SH_INTC 78 79 select SYS_SUPPORTS_SH_CMT 79 80 select SYS_SUPPORTS_SH_TMU 80 81 ··· 86 85 select CPU_V7 87 86 select I2C 88 87 select SH_CLK_CPG 88 + select SH_INTC 89 89 select RENESAS_INTC_IRQPIN 90 90 select SYS_SUPPORTS_SH_CMT 91 91 select SYS_SUPPORTS_SH_TMU
+3
arch/sh/Kconfig
··· 172 172 # 173 173 config CPU_SH2 174 174 bool 175 + select SH_INTC 175 176 176 177 config CPU_SH2A 177 178 bool ··· 183 182 bool 184 183 select CPU_HAS_INTEVT 185 184 select CPU_HAS_SR_RB 185 + select SH_INTC 186 186 select SYS_SUPPORTS_SH_TMU 187 187 188 188 config CPU_SH4 ··· 191 189 select CPU_HAS_INTEVT 192 190 select CPU_HAS_SR_RB 193 191 select CPU_HAS_FPU if !CPU_SH4AL_DSP 192 + select SH_INTC 194 193 select SYS_SUPPORTS_SH_TMU 195 194 select SYS_SUPPORTS_HUGETLBFS if MMU 196 195
+1 -2
drivers/sh/Makefile
··· 1 1 # 2 2 # Makefile for the SuperH specific drivers. 3 3 # 4 - obj-$(CONFIG_SUPERH) += intc/ 5 - obj-$(CONFIG_ARCH_SHMOBILE_LEGACY) += intc/ 4 + obj-$(CONFIG_SH_INTC) += intc/ 6 5 ifneq ($(CONFIG_COMMON_CLK),y) 7 6 obj-$(CONFIG_HAVE_CLK) += clk/ 8 7 endif
+5 -1
drivers/sh/intc/Kconfig
··· 1 1 config SH_INTC 2 - def_bool y 2 + bool 3 3 select IRQ_DOMAIN 4 + 5 + if SH_INTC 4 6 5 7 comment "Interrupt controller options" 6 8 ··· 39 37 between system IRQs and the per-controller id tables. 40 38 41 39 If in doubt, say N. 40 + 41 + endif