From: Yang Shi Date: Fri, 19 Feb 2016 23:42:11 +0000 (-0800) Subject: MIPS: Kconfig: replace OPROFILE=n to !OPROFILE X-Git-Tag: v4.14-rc1~3097^2~181 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23021b2bb98543d08e22725122650644d824bf18;p=platform%2Fkernel%2Flinux-rpi.git MIPS: Kconfig: replace OPROFILE=n to !OPROFILE In Kconfig "=n" is not correct syntax, "!" is the preferred way for false-positive expression. Signed-off-by: Yang Shi Cc: linux-kernel@vger.kernel.org Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/12572/ Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 68ddb45..79a1c69 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -2544,7 +2544,7 @@ config NODES_SHIFT config HW_PERF_EVENTS bool "Enable hardware performance counter support for perf events" - depends on PERF_EVENTS && OPROFILE=n && (CPU_MIPS32 || CPU_MIPS64 || CPU_R10000 || CPU_SB1 || CPU_CAVIUM_OCTEON || CPU_XLP || CPU_LOONGSON3) + depends on PERF_EVENTS && !OPROFILE && (CPU_MIPS32 || CPU_MIPS64 || CPU_R10000 || CPU_SB1 || CPU_CAVIUM_OCTEON || CPU_XLP || CPU_LOONGSON3) default y help Enable hardware performance counter support for perf events. If