All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] blackfin: Makefile: Add -D__linux__ flag for KBUILD_CFLAGS
@ 2015-04-03 20:19 Chen Gang
  2015-04-03 22:56 ` Richard Weinberger
  0 siblings, 1 reply; 5+ messages in thread
From: Chen Gang @ 2015-04-03 20:19 UTC (permalink / raw)
  To: realmz6
  Cc: adi-buildroot-devel@lists.sourceforge.net,
	linux-kernel@vger.kernel.org

The related error with allmodconfig:

    CC [M]  fs/coda/psdev.o
  In file included from include/linux/coda.h:64:0,
                   from fs/coda/psdev.c:45:
  include/uapi/linux/coda.h:221:2: error: unknown type name 'u_quad_t'
    u_quad_t va_size; /* file size in bytes */
    ^
  include/uapi/linux/coda.h:229:2: error: unknown type name 'u_quad_t'
    u_quad_t va_bytes; /* bytes of disk space held by file */
    ^
  include/uapi/linux/coda.h:230:2: error: unknown type name 'u_quad_t'
    u_quad_t va_filerev; /* file modification number */
    ^

Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
---
 arch/blackfin/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/blackfin/Makefile b/arch/blackfin/Makefile
index 1fce086..2ece4e3 100644
--- a/arch/blackfin/Makefile
+++ b/arch/blackfin/Makefile
@@ -13,7 +13,7 @@ LDFLAGS_vmlinux  := -X
 OBJCOPYFLAGS     := -O binary -R .note -R .comment -S
 GZFLAGS          := -9
 
-KBUILD_CFLAGS           += $(call cc-option,-mno-fdpic)
+KBUILD_CFLAGS           += $(call cc-option,-mno-fdpic) -D__linux__
 ifeq ($(CONFIG_ROMKERNEL),y)
 KBUILD_CFLAGS           += -mlong-calls
 endif
-- 
1.9.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-04-04 21:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-03 20:19 [PATCH] blackfin: Makefile: Add -D__linux__ flag for KBUILD_CFLAGS Chen Gang
2015-04-03 22:56 ` Richard Weinberger
2015-04-04 21:13   ` Chen Gang
2015-04-04 21:17     ` Richard Weinberger
2015-04-04 21:29       ` Chen Gang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.