From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2992924AbcBTAFR (ORCPT ); Fri, 19 Feb 2016 19:05:17 -0500 Received: from mail.windriver.com ([147.11.1.11]:38948 "EHLO mail.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1948035AbcBTAFO (ORCPT ); Fri, 19 Feb 2016 19:05:14 -0500 From: Yang Shi To: CC: , Subject: [PATCH] mips: Kconfig: replace OPROFILE=n to !OPROFILE Date: Fri, 19 Feb 2016 15:42:11 -0800 Message-ID: <1455925331-9662-1-git-send-email-yang.shi@windriver.com> X-Mailer: git-send-email 2.0.2 MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org In Kconfig "=n" is not correct syntax, "!" is the preferred way for false-positive expression. Signed-off-by: Yang Shi --- arch/mips/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 74a3db9..ab433d3 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -2484,7 +2484,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 -- 2.0.2