mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
mfd: max8925: Fix onkey driver irq base
update onkey driver's irq base, it should get from max8925, but not save in a private value Signed-off-by: Qing Xu <qingx@marvell.com> Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
f9ed143180
commit
678e8cb506
2 changed files with 1 additions and 4 deletions
|
@ -100,9 +100,6 @@ static int max8925_onkey_probe(struct platform_device *pdev)
|
||||||
input->dev.parent = &pdev->dev;
|
input->dev.parent = &pdev->dev;
|
||||||
input_set_capability(input, EV_KEY, KEY_POWER);
|
input_set_capability(input, EV_KEY, KEY_POWER);
|
||||||
|
|
||||||
irq[0] += chip->irq_base;
|
|
||||||
irq[1] += chip->irq_base;
|
|
||||||
|
|
||||||
error = request_threaded_irq(irq[0], NULL, max8925_onkey_handler,
|
error = request_threaded_irq(irq[0], NULL, max8925_onkey_handler,
|
||||||
IRQF_ONESHOT, "onkey-down", info);
|
IRQF_ONESHOT, "onkey-down", info);
|
||||||
if (error < 0) {
|
if (error < 0) {
|
||||||
|
|
|
@ -867,7 +867,7 @@ int max8925_device_init(struct max8925_chip *chip,
|
||||||
|
|
||||||
ret = mfd_add_devices(chip->dev, 0, &onkey_devs[0],
|
ret = mfd_add_devices(chip->dev, 0, &onkey_devs[0],
|
||||||
ARRAY_SIZE(onkey_devs),
|
ARRAY_SIZE(onkey_devs),
|
||||||
NULL, 0, NULL);
|
NULL, chip->irq_base, NULL);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(chip->dev, "Failed to add onkey subdev\n");
|
dev_err(chip->dev, "Failed to add onkey subdev\n");
|
||||||
goto out_dev;
|
goto out_dev;
|
||||||
|
|
Loading…
Add table
Reference in a new issue