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

Commit 08c1a4ef authored by Alex Williamson's avatar Alex Williamson
Browse files

vfio-mdev: Fix mtty sample driver building



This sample driver was originally under Documentation/ and was moved
to samples, but build support was never adjusted for the new location.

Signed-off-by: default avatarAlex Williamson <alex.williamson@redhat.com>
Reviewed-by: default avatarEric Auger <eric.auger@redhat.com>
Tested-by: default avatarEric Auger <eric.auger@redhat.com>
Reviewed-by: default avatarKirti Wankhede <kwankhede@nvidia.com>
parent 98473f9f
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -105,4 +105,11 @@ config SAMPLE_BLACKFIN_GPTIMERS
	help
	  Build samples of blackfin gptimers sample module.

config SAMPLE_VFIO_MDEV_MTTY
	tristate "Build VFIO mtty example mediated device sample code -- loadable modules only"
	depends on VFIO_MDEV_DEVICE && m
	help
	  Build a virtual tty sample driver for use as a VFIO
	  mediated device

endif # SAMPLES
+2 −1
Original line number Diff line number Diff line
@@ -2,4 +2,5 @@

obj-$(CONFIG_SAMPLES)	+= kobject/ kprobes/ trace_events/ livepatch/ \
			   hw_breakpoint/ kfifo/ kdb/ hidraw/ rpmsg/ seccomp/ \
			   configfs/ connector/ v4l/ trace_printk/ blackfin/
			   configfs/ connector/ v4l/ trace_printk/ blackfin/ \
			   vfio-mdev/
+1 −13
Original line number Diff line number Diff line
#
# Makefile for mtty.c file
#
KERNEL_DIR:=/lib/modules/$(shell uname -r)/build

obj-m:=mtty.o

modules clean modules_install:
	$(MAKE) -C $(KERNEL_DIR) SUBDIRS=$(PWD) $@

default: modules

module: modules
obj-$(CONFIG_SAMPLE_VFIO_MDEV_MTTY) += mtty.o