mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-03-09 15:40:20 +00:00
27 lines
942 B
Diff
27 lines
942 B
Diff
From 0d6f57fa567193eba861f410ca22c474f72f1f06 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Mon, 10 Jun 2024 17:41:14 +0100
|
|
Subject: [PATCH 465/697] drivers: media: pcie: hailo: Fix include paths
|
|
|
|
An attempt to fix the include paths - they look reasonable, but the
|
|
GitHub auto-builds fail.
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
drivers/media/pci/hailo/Makefile | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
--- a/drivers/media/pci/hailo/Makefile
|
|
+++ b/drivers/media/pci/hailo/Makefile
|
|
@@ -25,8 +25,8 @@ hailo_pci-objs += $(VDMA_SRC_DIRECTORY)/
|
|
|
|
ccflags-y += -Werror
|
|
ccflags-y += -DHAILO_RASBERRY_PIE
|
|
-ccflags-y += -I$(srctree)/$(src)
|
|
-ccflags-y += -I$(srctree)/$(src)/include
|
|
-ccflags-y += -I$(srctree)/$(src)/common
|
|
+ccflags-y += -I $(src)
|
|
+ccflags-y += -I $(src)/include
|
|
+ccflags-y += -I $(src)/common
|
|
|
|
clean-files := $(hailo_pci-objs)
|