summaryrefslogtreecommitdiffstats
path: root/tools/hv
diff options
context:
space:
mode:
authorKamal Mostafa2016-01-28 07:29:33 +0100
committerGreg Kroah-Hartman2016-02-08 06:34:12 +0100
commit50fe6dd10069e7c062e27f29606f6e91ea979399 (patch)
treef45f24f4dfd69a0e628805fd7eb33e6c92f05f27 /tools/hv
parentDrivers: hv: vmbus: Add vendor and device atttributes (diff)
downloadkernel-qcow2-linux-50fe6dd10069e7c062e27f29606f6e91ea979399.tar.gz
kernel-qcow2-linux-50fe6dd10069e7c062e27f29606f6e91ea979399.tar.xz
kernel-qcow2-linux-50fe6dd10069e7c062e27f29606f6e91ea979399.zip
tools/hv: Use include/uapi with __EXPORTED_HEADERS__
Use the local uapi headers to keep in sync with "recently" added #define's (e.g. VSS_OP_REGISTER1). Fixes: 3eb2094c59e8 ("Adding makefile for tools/hv") Cc: <stable@vger.kernel.org> Signed-off-by: Kamal Mostafa <kamal@canonical.com> Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/hv')
-rw-r--r--tools/hv/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/hv/Makefile b/tools/hv/Makefile
index a8ab79556926..a8c4644022a6 100644
--- a/tools/hv/Makefile
+++ b/tools/hv/Makefile
@@ -5,6 +5,8 @@ PTHREAD_LIBS = -lpthread
WARNINGS = -Wall -Wextra
CFLAGS = $(WARNINGS) -g $(PTHREAD_LIBS) $(shell getconf LFS_CFLAGS)
+CFLAGS += -D__EXPORTED_HEADERS__ -I../../include/uapi -I../../include
+
all: hv_kvp_daemon hv_vss_daemon hv_fcopy_daemon
%: %.c
$(CC) $(CFLAGS) -o $@ $^