From: Luis R. Rodriguez Date: Thu, 27 Sep 2012 23:41:09 +0000 (-0700) Subject: compat-drivers: force using include/drm for header namespace X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=09cbf22d46383c03b87fbba3666106b3c6054e0c;p=openwrt%2Fstaging%2Fblogic.git compat-drivers: force using include/drm for header namespace Turns out DRM drivers use this: #include "drmP.h" Instead of: #include Withtout this change we are using the older kernel's header file and not the one we are cherry pickng over from the kernel we want to help backport. Signed-off-by: Luis R. Rodriguez --- diff --git a/Makefile b/Makefile index d8c7d273b8e7..e3c3fa6d859f 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,7 @@ include $(COMPAT_CONFIG_CW) NOSTDINC_FLAGS := \ -I$(M)/include/ \ + -I$(M)/include/drm \ -include $(M)/include/linux/compat-2.6.h \ $(CFLAGS)