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

Commit 3770c75a authored by Lee Jones's avatar Lee Jones Committed by Samuel Ortiz
Browse files

mfd: Enable Device Tree support in the ab8500-pwm driver



This patch ensures probing of the ab8500-pwm driver during a DT
enabled boot, so long as the associated nodes are present in the
Device Tree binary.

Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 01247ef7
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -142,10 +142,16 @@ static int __devexit ab8500_pwm_remove(struct platform_device *pdev)
	return 0;
}

static const struct of_device_id ab8500_pwm_match[] = {
	{ .compatible = "stericsson,ab8500-pwm", },
	{}
};

static struct platform_driver ab8500_pwm_driver = {
	.driver = {
		.name = "ab8500-pwm",
		.owner = THIS_MODULE,
		.of_match_table = ab8500_pwm_match,
	},
	.probe = ab8500_pwm_probe,
	.remove = __devexit_p(ab8500_pwm_remove),