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

Commit c6a146c2 authored by Yan He's avatar Yan He
Browse files

msm: pcie: Correct the host data type



The type of host data in irq_domain structure should be pointer
type instead of pointer to pointer type. Fix it in this change.

Change-Id: I09169401cc7b94d1b2baed910114080ff613cad3
Signed-off-by: default avatarYan He <yanhe@codeaurora.org>
parent 97ce6619
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
/* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
/* Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -388,7 +388,7 @@ int32_t msm_pcie_irq_init(struct msm_pcie_dev_t *dev)
	dev->irq_domain = irq_domain_add_linear(dev->pdev->dev.of_node,
			PCIE_MSI_NR_IRQS,
			&msm_pcie_msi_ops,
			&dev);
			dev);
	if (!dev->irq_domain) {
		pr_err("PCIe: Unable to initialize irq domain\n");
		disable_irq(dev->wake_n);