gpu: host1x: Use relative include paths

This is slightly safer than adding -Idrivers/gpu/host1x to cflags-y.

Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
Thierry Reding 2013-10-09 10:32:54 +02:00
Родитель 776dc38403
Коммит fc3be3e8fc
7 изменённых файлов: 24 добавлений и 26 удалений

Просмотреть файл

@ -1,5 +1,3 @@
ccflags-y = -Idrivers/gpu/host1x
host1x-y = \ host1x-y = \
bus.o \ bus.o \
syncpt.o \ syncpt.o \

Просмотреть файл

@ -20,10 +20,10 @@
#include <linux/scatterlist.h> #include <linux/scatterlist.h>
#include <linux/dma-mapping.h> #include <linux/dma-mapping.h>
#include "cdma.h" #include "../cdma.h"
#include "channel.h" #include "../channel.h"
#include "dev.h" #include "../dev.h"
#include "debug.h" #include "../debug.h"
/* /*
* Put the restart at the end of pushbuffer memor * Put the restart at the end of pushbuffer memor

Просмотреть файл

@ -21,10 +21,10 @@
#include <trace/events/host1x.h> #include <trace/events/host1x.h>
#include "channel.h" #include "../channel.h"
#include "dev.h" #include "../dev.h"
#include "intr.h" #include "../intr.h"
#include "job.h" #include "../job.h"
#define HOST1X_CHANNEL_SIZE 16384 #define HOST1X_CHANNEL_SIZE 16384
#define TRACE_MAX_LENGTH 128U #define TRACE_MAX_LENGTH 128U

Просмотреть файл

@ -15,10 +15,10 @@
* *
*/ */
#include "dev.h" #include "../dev.h"
#include "debug.h" #include "../debug.h"
#include "cdma.h" #include "../cdma.h"
#include "channel.h" #include "../channel.h"
#define HOST1X_DEBUG_MAX_PAGE_OFFSET 102400 #define HOST1X_DEBUG_MAX_PAGE_OFFSET 102400

Просмотреть файл

@ -17,17 +17,17 @@
*/ */
/* include hw specification */ /* include hw specification */
#include "hw/host1x01.h" #include "host1x01.h"
#include "hw/host1x01_hardware.h" #include "host1x01_hardware.h"
/* include code */ /* include code */
#include "hw/cdma_hw.c" #include "cdma_hw.c"
#include "hw/channel_hw.c" #include "channel_hw.c"
#include "hw/debug_hw.c" #include "debug_hw.c"
#include "hw/intr_hw.c" #include "intr_hw.c"
#include "hw/syncpt_hw.c" #include "syncpt_hw.c"
#include "dev.h" #include "../dev.h"
int host1x01_init(struct host1x *host) int host1x01_init(struct host1x *host)
{ {

Просмотреть файл

@ -22,8 +22,8 @@
#include <linux/io.h> #include <linux/io.h>
#include <asm/mach/irq.h> #include <asm/mach/irq.h>
#include "intr.h" #include "../intr.h"
#include "dev.h" #include "../dev.h"
/* /*
* Sync point threshold interrupt service function * Sync point threshold interrupt service function

Просмотреть файл

@ -18,8 +18,8 @@
#include <linux/io.h> #include <linux/io.h>
#include "dev.h" #include "../dev.h"
#include "syncpt.h" #include "../syncpt.h"
/* /*
* Write the current syncpoint value back to hw. * Write the current syncpoint value back to hw.