Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1981)

Unified Diff: target/stm32746g-eval2/lcd.c

Issue 1951403002: Stub display_present (Closed) Base URL: https://github.com/littlekernel/lk.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « target/qemu-m4/m4display.c ('k') | target/stm32f746g-disco/lcd.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: target/stm32746g-eval2/lcd.c
diff --git a/target/stm32746g-eval2/lcd.c b/target/stm32746g-eval2/lcd.c
index ea61b396067094482ab9e80a86865726275b241e..940520fbbdc538e321a74add928c50fae92f858a 100644
--- a/target/stm32746g-eval2/lcd.c
+++ b/target/stm32746g-eval2/lcd.c
@@ -48,6 +48,7 @@
******************************************************************************
*/
+#include <assert.h>
#include <err.h>
#include <debug.h>
#include <trace.h>
@@ -429,3 +430,10 @@ status_t display_get_info(struct display_info *info)
return NO_ERROR;
}
+
+status_t display_present(struct display_image *image, uint starty, uint endy)
+{
+ TRACEF("display_present - not implemented");
+ DEBUG_ASSERT(false);
+ return NO_ERROR;
+}
« no previous file with comments | « target/qemu-m4/m4display.c ('k') | target/stm32f746g-disco/lcd.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698