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

Commit c558df4a authored by Suresh Siddha's avatar Suresh Siddha Committed by Ingo Molnar
Browse files

irq_remap: Fix the 'sub_handle' uninitialized warning



Fix this uninitialized variable warning:

  drivers/iommu/intel_irq_remapping.c:986:12: warning: ‘sub_handle’ may be used uninitialized in this function [-Wuninitialized]

GCC is wrong, help it out.

Signed-off-by: default avatarSuresh Siddha <suresh.b.siddha@intel.com>
Cc: joro@8bytes.org
Cc: iommu@lists.linux-foundation.org
Cc: Joerg Roedel <joerg.roedel@amd.com>
Link: http://lkml.kernel.org/r/1336460934-23592-3-git-send-email-suresh.b.siddha@intel.com


Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 82b481e8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -964,7 +964,7 @@ static void intel_compose_msi_msg(struct pci_dev *pdev,
{
	struct irq_cfg *cfg;
	struct irte irte;
	u16 sub_handle;
	u16 sub_handle = 0;
	int ir_index;

	cfg = irq_get_chip_data(irq);