From: Thomas Cort Date: Sun, 15 Sep 2013 23:48:29 +0000 (-0400) Subject: tda19988: add missing blockdriver_announce() call X-Git-Tag: v3.3.0~799 X-Git-Url: http://zhaoyanbai.com/repos/COPYRIGHT?a=commitdiff_plain;h=refs%2Fchanges%2F24%2F824%2F3;p=minix.git tda19988: add missing blockdriver_announce() call To provide EDID to fb, the TDA19988 implements the block device protocol with libblockdriver. To properly use the library, blockdriver_announce() should be called by the driver. Issue reported by David van Moolenbroek Change-Id: Id55d159d91502a9afac5c1d4de0fee1e8945b5c1 --- diff --git a/drivers/tda19988/tda19988.c b/drivers/tda19988/tda19988.c index 0913936fd..81f40bcb5 100644 --- a/drivers/tda19988/tda19988.c +++ b/drivers/tda19988/tda19988.c @@ -993,6 +993,7 @@ sef_cb_init(int type, sef_init_info_t * UNUSED(info)) i2cdriver_announce(hdmi_bus); } + blockdriver_announce(type); log_trace(&log, "announced\n"); }