From de34a55bebcd90795129b7c709815bdddd67ac87 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Tue, 27 Sep 2022 16:06:39 -0400 Subject: [PATCH] Fix: dma_fence tracepoint Kbuild typo Signed-off-by: Mathieu Desnoyers Change-Id: I9f603c3d4f10dd812ff33203928f9edac9b99489 --- src/probes/Kbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/probes/Kbuild b/src/probes/Kbuild index 7597389b..7e2930dc 100644 --- a/src/probes/Kbuild +++ b/src/probes/Kbuild @@ -100,7 +100,7 @@ obj-$(CONFIG_LTTNG) += lttng-probe-signal.o ifneq ($(CONFIG_DMA_SHARED_BUFFER),) obj-$(CONFIG_LTTNG) += $(shell \ if [ $(VERSION) -ge 5 \ - -o \( $VERSION -eq 4 -a $(PATCHLEVEL) -ge 9 \) ] ; then \ + -o \( $(VERSION) -eq 4 -a $(PATCHLEVEL) -ge 9 \) ] ; then \ echo "lttng-probe-dma-fence.o" ; fi;) endif # CONFIG_DMA_SHARED_BUFFER -- 2.34.1