imx233: fix yellow

Change-Id: I6fc2559a0c6f91301bb1039d7125f7a6fb55cac5
This commit is contained in:
Amaury Pouly 2013-11-11 02:01:48 +00:00
parent a54c4ab7d4
commit 39bfd0d2ab

View file

@ -208,6 +208,11 @@ void imx233_lcdif_dma_send(void *buf, unsigned width, unsigned height)
HW_LCDIF_TRANSFER_COUNT = BF_OR2(LCDIF_TRANSFER_COUNT, V_COUNT(height), H_COUNT(width));
BF_SET(LCDIF_CTRL, DATA_SELECT);
BF_SET(LCDIF_CTRL, RUN);
#else
(void) buf;
(void) width;
(void) height;
panicf("Unimplemented");
#endif
}