interconnect: Move MODULE_DEVICE_TABLE next to the table itself

By convention MODULE_DEVICE_TABLE() immediately follows the ID table it
exports, because this is easier to read and verify.  It also makes more
sense since #ifdef for ACPI or OF could hide both of them.

Most of the privers already have this correctly placed, so adjust
the missing ones.  No functional impact.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Link: https://patch.msgid.link/20260505102854.186925-2-krzysztof.kozlowski@oss.qualcomm.com
Signed-off-by: Georgi Djakov <djakov@kernel.org>
This commit is contained in:
Krzysztof Kozlowski 2026-05-05 12:28:55 +02:00 committed by Georgi Djakov
parent 7562778563
commit 5f00d6e5bd

View File

@ -1307,6 +1307,7 @@ static const struct of_device_id msm8953_noc_of_match[] = {
{ .compatible = "qcom,msm8953-snoc-mm", .data = &msm8953_snoc_mm },
{ }
};
MODULE_DEVICE_TABLE(of, msm8953_noc_of_match);
static struct platform_driver msm8953_noc_driver = {
.probe = qnoc_probe,
@ -1318,6 +1319,5 @@ static struct platform_driver msm8953_noc_driver = {
};
module_platform_driver(msm8953_noc_driver);
MODULE_DEVICE_TABLE(of, msm8953_noc_of_match);
MODULE_DESCRIPTION("Qualcomm MSM8953 NoC driver");
MODULE_LICENSE("GPL");