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

Commit 5d7531fa authored by Neeraj Upadhyay's avatar Neeraj Upadhyay
Browse files

soc: qcom: ipcc: Rename 'compatible' to not be SoC specific



Since the IPCC driver has no SoC specific dependency on Kona,
remove the 'kona' substring from its compatible.

Change-Id: I335684c62ae4f9c3d218e02e1ade783e1ffeb6df
Signed-off-by: default avatarNeeraj Upadhyay <neeraju@codeaurora.org>
parent 2cf0fe10
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1231,7 +1231,7 @@
	};

	ipcc_mproc: qcom,ipcc@408000 {
		compatible = "qcom,kona-ipcc";
		compatible = "qcom,ipcc";
		reg = <0x408000 0x1000>;
		interrupts = <GIC_SPI 229 IRQ_TYPE_LEVEL_HIGH>;
		interrupt-controller;
+2 −2
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2018, The Linux Foundation. All rights reserved.
 * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
 */

#include <linux/module.h>
@@ -384,7 +384,7 @@ static int qcom_ipcc_remove(struct platform_device *pdev)
}

static const struct of_device_id qcom_ipcc_of_match[] = {
	{ .compatible = "qcom,kona-ipcc"},
	{ .compatible = "qcom,ipcc"},
	{}
};
MODULE_DEVICE_TABLE(of, qcom_ipcc_of_match);