Commit 9e01a009 authored by Linus Walleij's avatar Linus Walleij

soc: ixp4xx: qmgr: Add DT probe code

This makes the queue manager driver able to probe from the device
tree. It only needs to get a memory resource and two interrupts
and the platform device provides these as resources, so all is
pretty simple.
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 6e2b0f8c
......@@ -450,9 +450,17 @@ static int ixp4xx_qmgr_remove(struct platform_device *pdev)
return 0;
}
static const struct of_device_id ixp4xx_qmgr_of_match[] = {
{
.compatible = "intel,ixp4xx-ahb-queue-manager",
},
{},
};
static struct platform_driver ixp4xx_qmgr_driver = {
.driver = {
.name = "ixp4xx-qmgr",
.of_match_table = of_match_ptr(ixp4xx_qmgr_of_match),
},
.probe = ixp4xx_qmgr_probe,
.remove = ixp4xx_qmgr_remove,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment