From: "Luis R. Rodriguez" <mcgrof@xxxxxxxxxxxxxxxx> Turns out DRM drivers use this: #include "drmP.h" Instead of: #include <drm/drmP.h> 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 <mcgrof@xxxxxxxxxxxxxxxx> --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index d8c7d27..e3c3fa6 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) -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe backports" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html