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

Commit 9385860b authored by Lina Iyer's avatar Lina Iyer Committed by Jordan Crouse
Browse files

Revert "drivers: qcom: cmd-db: modularize commandDB driver"



This reverts commit 75afa532.
Too many things rely on cmd-db to be built in to allow it to
be built as a module.

Change-Id: I317ba89a7d3c9f88832e73834b65bcccac79bbe1
Signed-off-by: default avatarLina Iyer <ilina@codeaurora.org>
parent f7a35f03
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ config QCOM_AOSS_QMP
	  Subsystem (AOSS) using Qualcomm Messaging Protocol (QMP).

config QCOM_COMMAND_DB
	tristate "Qualcomm Technologies, Inc. Command DB driver"
	bool "Qualcomm Technologies, Inc. Command DB driver"
	depends on ARCH_QCOM || COMPILE_TEST
	depends on OF_RESERVED_MEM
	help
+5 −4
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@
#include <linux/debugfs.h>
#include <linux/fs.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/of_platform.h>
@@ -398,7 +397,9 @@ static struct platform_driver cmd_db_dev_driver = {
		   .of_match_table = cmd_db_match_table,
	},
};
builtin_platform_driver(cmd_db_dev_driver);

MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("Qualcomm Technologies, Inc. CommandDB driver");
static int __init cmd_db_device_init(void)
{
	return platform_driver_register(&cmd_db_dev_driver);
}
arch_initcall(cmd_db_device_init);