From e59905bf16f6e10296d2177d255e06a02d59e374 Mon Sep 17 00:00:00 2001 From: Joseph Chen Date: Thu, 28 May 2020 16:31:57 +0800 Subject: [PATCH] irq: use CONFIG_ROCKCHIP_GPIO_V2 instead of CONFIG_IRQ2GPIO_V2 Signed-off-by: Joseph Chen Change-Id: Id8b232efce483501053bcbd779a444d395c061fc --- drivers/irq/Kconfig | 6 ------ drivers/irq/Makefile | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/drivers/irq/Kconfig b/drivers/irq/Kconfig index 96b90be9f5..278da83475 100644 --- a/drivers/irq/Kconfig +++ b/drivers/irq/Kconfig @@ -5,9 +5,3 @@ config IRQ help Provide IRQ support for platforms -config IRQ2GPIO_V2 - bool "Enable irq to gpio v2 transfer" - depends on IRQ - help - Some platform with new GPIO IP implements the low/high - registers with write mask. This configure handles it. diff --git a/drivers/irq/Makefile b/drivers/irq/Makefile index 745bdea23c..b9b1c272a6 100644 --- a/drivers/irq/Makefile +++ b/drivers/irq/Makefile @@ -6,7 +6,7 @@ obj-y += irq-gic.o -ifdef CONFIG_IRQ2GPIO_V2 +ifdef CONFIG_ROCKCHIP_GPIO_V2 obj-y += irq-gpio-v2.o else obj-y += irq-gpio.o