From e74d45174b551168cd0efce8f8313a92a16ac131 Mon Sep 17 00:00:00 2001 From: Jon Hunter Date: Mon, 20 May 2024 20:40:05 +0100 Subject: [PATCH] tegra_hv: Remove unused dummy driver Support for building the dummy tegra_hv driver has been removed from the Makefile and so remove the unused source file as this is no longer being used. Bug 4370594 Bug 4346767 Change-Id: I44134df27374338d37ebbb71d9562bcabd0b86e9 Signed-off-by: Jon Hunter Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3141627 GVS: buildbot_gerritrpt Reviewed-by: Brad Griffis --- drivers/virt/tegra/tegra-hv-dummy.c | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 drivers/virt/tegra/tegra-hv-dummy.c diff --git a/drivers/virt/tegra/tegra-hv-dummy.c b/drivers/virt/tegra/tegra-hv-dummy.c deleted file mode 100644 index f56c8bd9..00000000 --- a/drivers/virt/tegra/tegra-hv-dummy.c +++ /dev/null @@ -1,17 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0 -/* - * Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. - */ - -#include - -/* Dummy implementation for module */ -static int __init tegra_hv_dummy_init(void) -{ - return 0; -} -device_initcall(tegra_hv_dummy_init); - -MODULE_AUTHOR("Laxman Dewangan "); -MODULE_DESCRIPTION("Dummy HV driver"); -MODULE_LICENSE("GPL V2");