Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: max14577: Don't pass IRQ domain to mfd_add_devices

The max14577 MFD cells do not have any resources so the IRQ domain
passed to mfd_add_devices is not used.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>

authored by

Krzysztof Kozlowski and committed by
Lee Jones
be69e9e0 0bf1f0cd

+1 -2
+1 -2
drivers/mfd/max14577.c
··· 456 456 } 457 457 458 458 ret = mfd_add_devices(max14577->dev, -1, mfd_devs, 459 - mfd_devs_size, NULL, 0, 460 - regmap_irq_get_domain(max14577->irq_data)); 459 + mfd_devs_size, NULL, 0, NULL); 461 460 if (ret < 0) 462 461 goto err_mfd; 463 462