aboutsummaryrefslogtreecommitdiff
path: root/Documentation/blackfin
diff options
context:
space:
mode:
authorChen Gang <xili_gchen_5257@hotmail.com>2015-04-05 11:50:02 +0800
committerJonathan Corbet <corbet@lwn.net>2015-04-11 15:19:31 +0200
commit82c91e87642dd6f88b9d9b1e5cc09232b6701eb0 (patch)
tree84ac64284f9659f044632b63746d3b56ba0627ce /Documentation/blackfin
parent3250af197b0ad7b6935a955c7e5492cf49d39ccd (diff)
Documentation: blackfin: Makefile: Typo building issue
Miss a ')' for ifneq in Makefile, the related building error: Documentation/blackfin/Makefile:2: *** invalid syntax in conditional. Stop. make[1]: *** [Documentation/blackfin] Error 2 Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/blackfin')
-rw-r--r--Documentation/blackfin/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/blackfin/Makefile b/Documentation/blackfin/Makefile
index 03f78059d6f5..6782c58fbc29 100644
--- a/Documentation/blackfin/Makefile
+++ b/Documentation/blackfin/Makefile
@@ -1,5 +1,5 @@
ifneq ($(CONFIG_BLACKFIN),)
-ifneq ($(CONFIG_BFIN_GPTIMERS,)
+ifneq ($(CONFIG_BFIN_GPTIMERS),)
obj-m := gptimers-example.o
endif
endif