Skip to content

Commit

Permalink
simplefb: Add support for enumerating simplefb dt nodes in /chosen
Browse files Browse the repository at this point in the history
Update simplefb to support the new preferred location for simplefb dt nodes
under /chosen.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
  • Loading branch information
Hans de Goede authored and Tomi Valkeinen committed Nov 14, 2014
1 parent 6d09dc6 commit 89c9500
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion drivers/video/fbdev/simplefb.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include <linux/platform_data/simplefb.h>
#include <linux/platform_device.h>
#include <linux/clk-provider.h>
#include <linux/of_platform.h>

static struct fb_fix_screeninfo simplefb_fix = {
.id = "simple",
Expand Down Expand Up @@ -392,7 +393,27 @@ static struct platform_driver simplefb_driver = {
.probe = simplefb_probe,
.remove = simplefb_remove,
};
module_platform_driver(simplefb_driver);

static int __init simplefb_init(void)
{
int ret;
struct device_node *np;

ret = platform_driver_register(&simplefb_driver);
if (ret)
return ret;

if (IS_ENABLED(CONFIG_OF) && of_chosen) {
for_each_child_of_node(of_chosen, np) {
if (of_device_is_compatible(np, "simple-framebuffer"))
of_platform_device_create(np, NULL, NULL);
}
}

return 0;
}

module_init(simplefb_init);

MODULE_AUTHOR("Stephen Warren <swarren@wwwdotorg.org>");
MODULE_DESCRIPTION("Simple framebuffer driver");
Expand Down

0 comments on commit 89c9500

Please sign in to comment.