Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 12b916db authored by Sachin Mohan Gadag's avatar Sachin Mohan Gadag
Browse files

Makefile: Fix Extraneous text after `ifeq' directive

- Remove extra brace in ifeq check.

Change-Id: I3a96f6244304fbac48ebc3d569ca725a38697cad
parent a03391ac
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ endif
ifeq ($(TARGET_SUPPORT),qcs40x)
KBUILD_OPTIONS += CONFIG_ARCH_QCS405=y
endif
ifeq ($(TARGET_SUPPORT), sdmsteppe))
ifeq ($(TARGET_SUPPORT), sdmsteppe)
KBUILD_OPTIONS += CONFIG_ARCH_SM6150=y
endif

@@ -47,7 +47,7 @@ obj-m += asoc/codecs/bolero/
obj-m += asoc/codecs/csra66x0/
obj-m += asoc/codecs/ep92/
endif
ifeq ($(TARGET_SUPPORT), sdmsteppe))
ifeq ($(TARGET_SUPPORT), sdmsteppe)
obj-m += asoc/codecs/bolero/
obj-m += asoc/codecs/wcd937x/
endif