| Index: platform/armemu/display.c
|
| diff --git a/platform/armemu/display.c b/platform/armemu/display.c
|
| index 0ab09bae94cd7d10cb6615e903a746f56805f9a5..fed1ccf6bdfe83faefc60b7b03c6d0d0b103867d 100644
|
| --- a/platform/armemu/display.c
|
| +++ b/platform/armemu/display.c
|
| @@ -22,6 +22,7 @@
|
| */
|
| #include <err.h>
|
| #include <debug.h>
|
| +#include <trace.h>
|
| #include <platform.h>
|
| #include "platform_p.h"
|
| #include <platform/armemu.h>
|
| @@ -85,3 +86,9 @@ 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;
|
| +}
|
|
|