Commit a89d1a87 authored by Tomi Valkeinen's avatar Tomi Valkeinen

OMAPFB: use omap_vrfb_supported()

Replace cpu_is_*() check with omap_vrfb_supported().
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent aa1e49a3
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
#include <linux/omapfb.h> #include <linux/omapfb.h>
#include <video/omapdss.h> #include <video/omapdss.h>
#include <plat/cpu.h>
#include <plat/vram.h> #include <plat/vram.h>
#include <video/omapvrfb.h> #include <video/omapvrfb.h>
...@@ -2396,10 +2395,7 @@ static int __init omapfb_probe(struct platform_device *pdev) ...@@ -2396,10 +2395,7 @@ static int __init omapfb_probe(struct platform_device *pdev)
goto err0; goto err0;
} }
/* TODO : Replace cpu check with omap_has_vrfb once HAS_FEATURE if (def_vrfb && !omap_vrfb_supported()) {
* available for OMAP2 and OMAP3
*/
if (def_vrfb && !cpu_is_omap24xx() && !cpu_is_omap34xx()) {
def_vrfb = 0; def_vrfb = 0;
dev_warn(&pdev->dev, "VRFB is not supported on this hardware, " dev_warn(&pdev->dev, "VRFB is not supported on this hardware, "
"ignoring the module parameter vrfb=y\n"); "ignoring the module parameter vrfb=y\n");
......
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