From a5ffb3104df437b5dbb65699366da601a272b5db Mon Sep 17 00:00:00 2001 From: Laxman Dewangan Date: Wed, 13 Dec 2023 02:58:50 +0000 Subject: [PATCH] firmware: bpmp: Remove unused dummy driver Tegra bpmp dummy driver was added as placeholder to generate the module KO while the main driver was disabled due to build error. The build issue with main driver is now fixed and dummy driver is no more used. Remove the dummy implementation of BPMP IVC driver. Bug 4346767 Change-Id: I5b3553738e709f05784cafdba6d22d8710353034 Signed-off-by: Laxman Dewangan Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3033439 GVS: Gerrit_Virtual_Submit --- drivers/firmware/tegra/tegra-bpmp-dummy.c | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 drivers/firmware/tegra/tegra-bpmp-dummy.c diff --git a/drivers/firmware/tegra/tegra-bpmp-dummy.c b/drivers/firmware/tegra/tegra-bpmp-dummy.c deleted file mode 100644 index de4e5fcc..00000000 --- a/drivers/firmware/tegra/tegra-bpmp-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_bpmp_dummy_init(void) -{ - return 0; -} -device_initcall(tegra_bpmp_dummy_init); - -MODULE_AUTHOR("Laxman Dewangan "); -MODULE_DESCRIPTION("Dummy bpmp driver"); -MODULE_LICENSE("GPL V2");