Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'fbdev-fixes-4.2' of git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux

Pull fbdev fix from Tomi Valkeinen:
"Fix display regression on TI AM4xxx boards"

* tag 'fbdev-fixes-4.2' of git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux:
OMAPDSS: fix probing if rfbi device is enabled

+9
+9
drivers/video/fbdev/omap2/dss/dss.c
··· 1225 1225 { 1226 1226 struct component_match **match = data; 1227 1227 1228 + /* 1229 + * HACK 1230 + * We don't have a working driver for rfbi, so skip it here always. 1231 + * Otherwise dss will never get probed successfully, as it will wait 1232 + * for rfbi to get probed. 1233 + */ 1234 + if (strstr(dev_name(dev), "rfbi")) 1235 + return 0; 1236 + 1228 1237 component_match_add(dev->parent, match, dss_component_compare, dev); 1229 1238 1230 1239 return 0;