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 <ldewangan@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3033439
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
This commit is contained in:
Laxman Dewangan
2023-12-13 02:58:50 +00:00
committed by mobile promotions
parent e290576b47
commit a5ffb3104d

View File

@@ -1,17 +0,0 @@
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
*/
#include <linux/module.h>
/* Dummy implementation for module */
static int __init tegra_bpmp_dummy_init(void)
{
return 0;
}
device_initcall(tegra_bpmp_dummy_init);
MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
MODULE_DESCRIPTION("Dummy bpmp driver");
MODULE_LICENSE("GPL V2");