From 720f0e77e45f8f8aaee5be4d954ab900b2c201d8 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Tue, 2 Aug 2016 09:11:40 -0700 Subject: [PATCH] examples/ioat: simplify kperf Makefile There is only one source file, so use the simpler build syntax that defines a module filename matching the source filename. Change-Id: I11fc1b81fb38ffa56d3c61f10cf32a3d7d7f82fc Signed-off-by: Daniel Verkamp --- examples/ioat/kperf/kmod/Makefile | 1 - examples/ioat/kperf/kmod/{dma_perf.c => dmaperf.c} | 0 2 files changed, 1 deletion(-) rename examples/ioat/kperf/kmod/{dma_perf.c => dmaperf.c} (100%) diff --git a/examples/ioat/kperf/kmod/Makefile b/examples/ioat/kperf/kmod/Makefile index e329219120..0def9015cd 100644 --- a/examples/ioat/kperf/kmod/Makefile +++ b/examples/ioat/kperf/kmod/Makefile @@ -32,7 +32,6 @@ # obj-m := dmaperf.o -dmaperf-y := dma_perf.o KDIR := /lib/modules/$(shell uname -r)/build diff --git a/examples/ioat/kperf/kmod/dma_perf.c b/examples/ioat/kperf/kmod/dmaperf.c similarity index 100% rename from examples/ioat/kperf/kmod/dma_perf.c rename to examples/ioat/kperf/kmod/dmaperf.c