From: tangmeng Date: Tue, 22 Mar 2022 21:49:09 +0000 (-0700) Subject: mm/damon: remove unnecessary CONFIG_DAMON option X-Git-Tag: v5.18-rc1~168^2~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3213a3c10fc81e8dd441b74b6555bb9cb287f898;p=thirdparty%2Fkernel%2Flinux.git mm/damon: remove unnecessary CONFIG_DAMON option In mm/Makefile has: obj-$(CONFIG_DAMON) += damon/ So that we don't need 'obj-$(CONFIG_DAMON) :=' in mm/damon/Makefile, delete it from mm/damon/Makefile. Link: https://lkml.kernel.org/r/20220221065255.19991-1-tangmeng@uniontech.com Signed-off-by: tangmeng Cc: SeongJae Park Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/damon/Makefile b/mm/damon/Makefile index 03931472991a4..aebbf6c14c51f 100644 --- a/mm/damon/Makefile +++ b/mm/damon/Makefile @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-2.0 -obj-$(CONFIG_DAMON) := core.o +obj-y := core.o obj-$(CONFIG_DAMON_VADDR) += ops-common.o vaddr.o obj-$(CONFIG_DAMON_PADDR) += ops-common.o paddr.o obj-$(CONFIG_DAMON_DBGFS) += dbgfs.o