From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756868AbdERRuM (ORCPT ); Thu, 18 May 2017 13:50:12 -0400 Received: from smtp2.provo.novell.com ([137.65.250.81]:35769 "EHLO smtp2.provo.novell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751221AbdERRuK (ORCPT ); Thu, 18 May 2017 13:50:10 -0400 From: Davidlohr Bueso To: akpm@linux-foundation.org Cc: dave@stgolabs.net, linux-kernel@vger.kernel.org, Davidlohr Bueso Subject: [PATCH 1/4] lib/interval_tree_test: allow the module to be compiled-in Date: Thu, 18 May 2017 10:49:33 -0700 Message-Id: <20170518174936.20265-2-dave@stgolabs.net> X-Mailer: git-send-email 2.12.0 In-Reply-To: <20170518174936.20265-1-dave@stgolabs.net> References: <20170518174936.20265-1-dave@stgolabs.net> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org It is a tristate after all, and also serves well for quick debugging. Signed-off-by: Davidlohr Bueso --- lib/Kconfig.debug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index e4587ebe52c7..b29bf26e653c 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -1773,7 +1773,7 @@ config RBTREE_TEST config INTERVAL_TREE_TEST tristate "Interval tree test" - depends on m && DEBUG_KERNEL + depends on DEBUG_KERNEL select INTERVAL_TREE help A benchmark measuring the performance of the interval tree library -- 2.12.0