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

Commit 7c2c583f authored by Trilok Soni's avatar Trilok Soni Committed by Stephen Boyd
Browse files

ARM: gic: Remove parameters from msm_gic_save



Remove modem_wake and from_idle parameters from msm_gic_save
API since they are not used at all.

Change-Id: Icd1a83aea6b0eb988c19ccdbaf65b1f5be9e8ac2
Signed-off-by: default avatarTrilok Soni <tsoni@codeaurora.org>
parent cfe3e2b6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -221,7 +221,7 @@ int msm_gic_irq_enter_sleep2(bool modem_wake, int from_idle)
		/* save the contents of GIC CPU interface and Distributor
		 * Disable all the Interrupts, if we enter from idle pc
		 */
		msm_gic_save(modem_wake, from_idle);
		msm_gic_save();
		irq_set_irq_type(MSM8625_INT_A9_M2A_6, IRQF_TRIGGER_RISING);
		enable_irq(MSM8625_INT_A9_M2A_6);
		pr_debug("%s going for sleep now\n", __func__);
+1 −1
Original line number Diff line number Diff line
@@ -1211,7 +1211,7 @@ unsigned int msm_gic_spi_ppi_pending(void)
}
#endif

void msm_gic_save(bool modem_wake, int from_idle)
void msm_gic_save(void)
{
	unsigned int i;
	struct gic_chip_data *gic = &gic_data[0];
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ static inline void gic_init(unsigned int nr, int start,
	gic_init_bases(nr, start, dist, cpu, 0, NULL);
}

void msm_gic_save(bool modem_wake, int from_idle);
void msm_gic_save(void);
void msm_gic_restore(void);
void gic_configure_and_raise(unsigned int irq, unsigned int cpu);
#endif