diff options
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/sh/Makefile | 3 | ||||
| -rw-r--r-- | drivers/sh/intc/Kconfig | 6 | 
2 files changed, 6 insertions, 3 deletions
diff --git a/drivers/sh/Makefile b/drivers/sh/Makefile index 788ed9b59b4e..114203f32843 100644 --- a/drivers/sh/Makefile +++ b/drivers/sh/Makefile @@ -1,8 +1,7 @@  #  # Makefile for the SuperH specific drivers.  # -obj-$(CONFIG_SUPERH)			+= intc/ -obj-$(CONFIG_ARCH_SHMOBILE_LEGACY)	+= intc/ +obj-$(CONFIG_SH_INTC)			+= intc/  ifneq ($(CONFIG_COMMON_CLK),y)  obj-$(CONFIG_HAVE_CLK)			+= clk/  endif diff --git a/drivers/sh/intc/Kconfig b/drivers/sh/intc/Kconfig index 60228fae943f..6a1b05ddc8c9 100644 --- a/drivers/sh/intc/Kconfig +++ b/drivers/sh/intc/Kconfig @@ -1,7 +1,9 @@  config SH_INTC -	def_bool y +	bool  	select IRQ_DOMAIN +if SH_INTC +  comment "Interrupt controller options"  config INTC_USERIMASK @@ -37,3 +39,5 @@ config INTC_MAPPING_DEBUG  	  between system IRQs and the per-controller id tables.  	  If in doubt, say N. + +endif  | 

