-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use "depends on" instead of "if" in Kconfig files. Fixed CAIF debug flag, and removed unnecessary clean-* options. Signed-off-by: Sjur Braendeland <sjur.brandeland@stericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Sjur Braendeland
authored and
David S. Miller
committed
Jun 29, 2010
1 parent
cfc9b16
commit 01eebb5
Showing
4 changed files
with
7 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
ifeq ($(CONFIG_CAIF_DEBUG),1) | ||
CAIF_DBG_FLAGS := -DDEBUG | ||
ifeq ($(CONFIG_CAIF_DEBUG),y) | ||
EXTRA_CFLAGS += -DDEBUG | ||
endif | ||
|
||
KBUILD_EXTRA_SYMBOLS=net/caif/Module.symvers | ||
|
||
ccflags-y := $(CAIF_FLAGS) $(CAIF_DBG_FLAGS) | ||
clean-dirs:= .tmp_versions | ||
clean-files:= Module.symvers modules.order *.cmd *~ \ | ||
|
||
# Serial interface | ||
obj-$(CONFIG_CAIF_TTY) += caif_serial.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters