mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 02:34:01 +08:00
mfd: tps65910: Pass irq_domain when adding mfd sub devices
When adding the sub device "tps65910-rtc", is it passed the IO resource IRQ for the interrupt number. This interrupt needs to map in the device irq domain. Pass the irq domain of device in mfd_add_devices() so that proper irq mapping can be done when adding the sub device RTC. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
4aab3fadad
commit
17143e38af
@ -509,7 +509,8 @@ static __devinit int tps65910_i2c_probe(struct i2c_client *i2c,
|
|||||||
|
|
||||||
ret = mfd_add_devices(tps65910->dev, -1,
|
ret = mfd_add_devices(tps65910->dev, -1,
|
||||||
tps65910s, ARRAY_SIZE(tps65910s),
|
tps65910s, ARRAY_SIZE(tps65910s),
|
||||||
NULL, 0, NULL);
|
NULL, 0,
|
||||||
|
regmap_irq_get_domain(tps65910->irq_data));
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(&i2c->dev, "mfd_add_devices failed: %d\n", ret);
|
dev_err(&i2c->dev, "mfd_add_devices failed: %d\n", ret);
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user