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

Commit 08845a35 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "power: bcl_peripheral: Move BCL interrupts to level based"

parents 5da8f94c 211ec036
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -848,7 +848,7 @@ static int bcl_probe(struct spmi_device *spmi)

	ret = devm_request_irq(&spmi->dev,
			bcl_perph->param[BCL_PARAM_VOLTAGE].irq_num,
			bcl_handle_isr, IRQF_TRIGGER_RISING,
			bcl_handle_isr, IRQF_TRIGGER_HIGH,
			"bcl_vbat_interrupt",
			&bcl_perph->param[BCL_PARAM_VOLTAGE]);
	if (ret) {
@@ -857,7 +857,7 @@ static int bcl_probe(struct spmi_device *spmi)
	}
	ret = devm_request_irq(&spmi->dev,
			bcl_perph->param[BCL_PARAM_CURRENT].irq_num,
			bcl_handle_isr, IRQF_TRIGGER_RISING,
			bcl_handle_isr, IRQF_TRIGGER_HIGH,
			"bcl_ibat_interrupt",
			&bcl_perph->param[BCL_PARAM_CURRENT]);
	if (ret) {