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

Commit 01944321 authored by Roger Quadros's avatar Roger Quadros Committed by Chanwoo Choi
Browse files

extcon: palmas: Don't miss GPIO events during suspend/resume



The USB cable state can change during suspend/resume
so be sure to check and update the extcon state.

Signed-off-by: default avatarRoger Quadros <rogerq@ti.com>
Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
parent 8680b4d1
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -413,6 +413,12 @@ static int palmas_usb_resume(struct device *dev)
		if (palmas_usb->enable_gpio_id_detection)
		if (palmas_usb->enable_gpio_id_detection)
			disable_irq_wake(palmas_usb->gpio_id_irq);
			disable_irq_wake(palmas_usb->gpio_id_irq);
	}
	}

	/* check if GPIO states changed while suspend/resume */
	if (palmas_usb->enable_gpio_vbus_detection)
		palmas_vbus_irq_handler(palmas_usb->gpio_vbus_irq, palmas_usb);
	palmas_gpio_id_detect(&palmas_usb->wq_detectid.work);

	return 0;
	return 0;
};
};
#endif
#endif