From 835de63acd7a7a1ba9dd492332235f4cf1003a23 Mon Sep 17 00:00:00 2001 From: Afzal Mohammed <afzal@ti.com> Date: Mon, 31 Dec 2012 14:37:16 +0530 Subject: [PATCH 14/51] video: da8xx-fb: ensure pdata only for non-dt This driver is DT probe-able, hence ensure presence of platform data only for non-DT boot. Signed-off-by: Afzal Mohammed <afzal@ti.com> --- drivers/video/da8xx-fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-3.12.36-rt50-r4s2/drivers/video/da8xx-fb.c =================================================================== @ linux-3.12.36-rt50-r4s2/drivers/video/da8xx-fb.c:1365 @ static int fb_probe(struct platform_devi int ret; unsigned long ulcm; - if (fb_pdata == NULL) { + if (fb_pdata == NULL && !device->dev.of_node) { dev_err(&device->dev, "Can not get platform data\n"); return -ENOENT; }