drivers/lcd: Add support for creating display lists incrementally.

This commit is contained in:
Gregory Nutt
2018-02-17 14:48:18 -06:00
parent e4292dced8
commit 885ab75045
3 changed files with 80 additions and 46 deletions
+2
View File
@@ -97,7 +97,9 @@ off_t file_seek(FAR struct file *filep, off_t offset, int whence)
{
case SEEK_CUR:
offset += filep->f_pos;
/* FALLTHROUGH */
case SEEK_SET:
if (offset >= 0)
{