]> asedeno.scripts.mit.edu Git - linux.git/commit
firmware: qcom_scm: make it explicitly non-modular
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Mon, 4 Jul 2016 15:01:56 +0000 (11:01 -0400)
committerAndy Gross <andy.gross@linaro.org>
Tue, 23 Aug 2016 20:46:32 +0000 (15:46 -0500)
commitdea8524218099ff73ffd1ebd08d97ce6a45b7e0e
treedac355eb97c26aa4fbe6551251491e5c66ecdc81
parent951a5af92276f5b2f1b8834bd5eef96d8788f66b
firmware: qcom_scm: make it explicitly non-modular

The Kconfig currently controlling compilation of this code is:

drivers/firmware/Kconfig:config QCOM_SCM
drivers/firmware/Kconfig:       bool

...meaning that it currently is not being built as a module by anyone.

Lets remove the modular code that is essentially orphaned, so that
when reading the driver there is no doubt it is builtin-only.

Since module_init was not in use by this code, the init ordering
remains unchanged with this commit.

Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code.

We also delete the MODULE_LICENSE tag etc. since all that information
was (or is now) contained at the top of the file in the comments.

Cc: Andy Gross <andy.gross@linaro.org>
Cc: David Brown <david.brown@linaro.org>
Cc: linux-arm-msm@vger.kernel.org
Cc: linux-soc@vger.kernel.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Andy Gross <andy.gross@linaro.org>
drivers/firmware/qcom_scm.c