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

Commit 3c8d7ef8 authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Alex Williamson
Browse files

vfio: platform: reset: fix up include directives to remove ccflags-y



For the include directive with double-quotes "", the preprocessor
searches the header in the relative path to the current file.

Fix them up, and remove the header search path option.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: default avatarEric Auger <eric.auger@redhat.com>
Signed-off-by: default avatarAlex Williamson <alex.williamson@redhat.com>
parent 278bca7f
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -2,8 +2,6 @@
vfio-platform-calxedaxgmac-y := vfio_platform_calxedaxgmac.o
vfio-platform-amdxgbe-y := vfio_platform_amdxgbe.o

ccflags-y += -Idrivers/vfio/platform

obj-$(CONFIG_VFIO_PLATFORM_CALXEDAXGMAC_RESET) += vfio-platform-calxedaxgmac.o
obj-$(CONFIG_VFIO_PLATFORM_AMDXGBE_RESET) += vfio-platform-amdxgbe.o
obj-$(CONFIG_VFIO_PLATFORM_BCMFLEXRM_RESET) += vfio_platform_bcmflexrm.o
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
#include <uapi/linux/mdio.h>
#include <linux/delay.h>

#include "vfio_platform_private.h"
#include "../vfio_platform_private.h"

#define DMA_MR			0x3000
#define MAC_VR			0x0110
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
#include <linux/kernel.h>
#include <linux/module.h>

#include "vfio_platform_private.h"
#include "../vfio_platform_private.h"

/* FlexRM configuration */
#define RING_REGS_SIZE					0x10000
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
#include <linux/init.h>
#include <linux/io.h>

#include "vfio_platform_private.h"
#include "../vfio_platform_private.h"

#define DRIVER_VERSION  "0.1"
#define DRIVER_AUTHOR   "Eric Auger <eric.auger@linaro.org>"