diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-05-18 11:26:31 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-05-18 11:32:03 +0200 |
commit | 56c1f0876293888f686e31278d183d4af2cac3c3 (patch) | |
tree | 1aa45f262fe4a8fbfd18ffbb80527bf365501b7d /drivers/media/platform/sti/bdisp/Makefile | |
parent | 29dd19e3ac7b2a8671ebeac02859232ce0e34f58 (diff) |
media: sti: fix obj-$(config) targets
The right thing to do is to add a new object to the building
system when a certain config option is selected, and *not*
override them.
So, fix obj-$(config) logic at sti makefiles, using "+=",
instead of ":=".
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/platform/sti/bdisp/Makefile')
-rw-r--r-- | drivers/media/platform/sti/bdisp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/sti/bdisp/Makefile b/drivers/media/platform/sti/bdisp/Makefile index caf7ccd193ea..39ade0a34723 100644 --- a/drivers/media/platform/sti/bdisp/Makefile +++ b/drivers/media/platform/sti/bdisp/Makefile @@ -1,4 +1,4 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-$(CONFIG_VIDEO_STI_BDISP) := bdisp.o +obj-$(CONFIG_VIDEO_STI_BDISP) += bdisp.o bdisp-objs := bdisp-v4l2.o bdisp-hw.o bdisp-debug.o |