Index: /trunk/src/VBox/Additions/linux/drm/Makefile.module.kms
===================================================================
--- /trunk/src/VBox/Additions/linux/drm/Makefile.module.kms	(revision 64731)
+++ /trunk/src/VBox/Additions/linux/drm/Makefile.module.kms	(revision 64732)
@@ -18,10 +18,4 @@
 #
 
-# Linux kbuild sets this to our source directory if we are called from there
-obj ?= $(CURDIR)
-include $(obj)/Makefile.include.header
-
-MOD_NAME   = vboxvideo
-
 MY_KERNELRELEASE := $(KERNELRELEASE)
 ifeq ($(MY_KERNELRELEASE),)
@@ -31,10 +25,14 @@
 ifeq ($(filter 1.% 2.% 3.0.% 3.1.% 3.2.% 3.3.% 3.4.% 3.5.% 3.6.% 3.7.% \
 3.8.% 3.9.% 3.10.%,$(MY_KERNELRELEASE)),)
+
+# Linux kbuild sets this to our source directory if we are called from there
+obj ?= $(CURDIR)
+include $(obj)/Makefile.include.header
+
+MOD_NAME   = vboxvideo
+
 MOD_OBJS   = HGSMIBase.o HGSMICommon.o HGSMIMemAlloc.o \
              Modesetting.o vbox_drv.o vbox_fb.o vbox_irq.o vbox_main.o \
              vbox_mode.o vbox_ttm.o VBVABase.o
-else
-MOD_OBJS   = vbox_dummy.o
-endif
 
 MOD_CFLAGS = -Wno-declaration-after-statement -fshort-wchar -fno-pie
@@ -56,2 +54,5 @@
 
 include $(obj)/Makefile.include.footer
+
+endif
+
Index: /trunk/src/VBox/Additions/linux/drm/files_vboxvideo_drv
===================================================================
--- /trunk/src/VBox/Additions/linux/drm/files_vboxvideo_drv	(revision 64731)
+++ /trunk/src/VBox/Additions/linux/drm/files_vboxvideo_drv	(revision 64732)
@@ -49,5 +49,4 @@
     ${PATH_ROOT}/src/VBox/Additions/linux/drm/vbox_drv.c=>vbox_drv.c \
     ${PATH_ROOT}/src/VBox/Additions/linux/drm/vbox_drv.h=>vbox_drv.h \
-    ${PATH_ROOT}/src/VBox/Additions/linux/drm/vbox_dummy.c=>vbox_dummy.c \
     ${PATH_ROOT}/src/VBox/Additions/linux/drm/vbox_fb.c=>vbox_fb.c \
     ${PATH_ROOT}/src/VBox/Additions/linux/drm/vbox_irq.c=>vbox_irq.c \
Index: unk/src/VBox/Additions/linux/drm/vbox_dummy.c
===================================================================
--- /trunk/src/VBox/Additions/linux/drm/vbox_dummy.c	(revision 64731)
+++ 	(revision )
@@ -1,32 +1,0 @@
-/*  $Id$ */
-/** @file
- * VirtualBox Additions Linux kernel video driver, dummy driver for
- * older kernels.
- */
-
-/*
- * Copyright (C) 2016 Oracle Corporation
- *
- * This file is part of VirtualBox Open Source Edition (OSE), as
- * available from http://www.virtualbox.org. This file is free software;
- * you can redistribute it and/or modify it under the terms of the GNU
- * General Public License (GPL) as published by the Free Software
- * Foundation, in version 2 as it comes in the "COPYING" file of the
- * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
- * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
- */
-
-#include <linux/module.h>
-
-static int __init vbox_init(void)
-{
-    return -EINVAL;
-}
-static void __exit vbox_exit(void)
-{
-}
-
-module_init(vbox_init);
-module_exit(vbox_exit);
-
-MODULE_LICENSE("GPL");
