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

Commit b9f84adc authored by Jarkko Nikula's avatar Jarkko Nikula Committed by Wolfram Sang
Browse files

i2c: designware: Disable interrupts before requesting PCI device interrupt



Device must not generate interrupts before registering the interrupt
handler so move i2c_dw_disable_int() before requesting it.

There are no known issues with this. The code has been here since commit
fe20ff5c ("i2c-designware: Add support for Designware core behind PCI
devices.").

Signed-off-by: default avatarJarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent c335631a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -260,6 +260,7 @@ static int i2c_dw_pci_probe(struct pci_dev *pdev,

	snprintf(adap->name, sizeof(adap->name), "i2c-designware-pci");

	i2c_dw_disable_int(dev);
	r = devm_request_irq(&pdev->dev, pdev->irq, i2c_dw_isr,
			IRQF_SHARED | IRQF_COND_SUSPEND, adap->name, dev);
	if (r) {
@@ -267,7 +268,6 @@ static int i2c_dw_pci_probe(struct pci_dev *pdev,
		return r;
	}

	i2c_dw_disable_int(dev);
	r = i2c_add_numbered_adapter(adap);
	if (r) {
		dev_err(&pdev->dev, "failure adding adapter\n");