Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f9be5f20 authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Daniel Vetter
Browse files

drm/core: get rid of -Iinclude/drm



This results in a warning when building out of tree:
"cc1: warning: include/drm: No such file or directory [enabled by default]"

Most code already uses #include <drm/foo.h> correctly, so fix the
instances that don't.

Reported-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent b588c92b
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -2,8 +2,6 @@
# Makefile for the drm device driver.  This driver provides support for the
# Makefile for the drm device driver.  This driver provides support for the
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.


ccflags-y := -Iinclude/drm

drm-y       :=	drm_auth.o drm_bufs.o drm_cache.o \
drm-y       :=	drm_auth.o drm_bufs.o drm_cache.o \
		drm_context.o drm_dma.o \
		drm_context.o drm_dma.o \
		drm_fops.o drm_gem.o drm_ioctl.o drm_irq.o \
		drm_fops.o drm_gem.o drm_ioctl.o drm_irq.o \
+2 −2
Original line number Original line Diff line number Diff line
@@ -21,8 +21,8 @@
 * SOFTWARE.
 * SOFTWARE.
 */
 */


#include "drmP.h"
#include <drm/drmP.h>
#include "drm_flip_work.h"
#include <drm/drm_flip_work.h>


/**
/**
 * drm_flip_work_allocate_task - allocate a flip-work task
 * drm_flip_work_allocate_task - allocate a flip-work task