summaryrefslogtreecommitdiff
path: root/nuttx/graphics/nxglib
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-13 16:22:22 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-13 16:22:22 -0600
commit70b6bb22af51defd713adfd452309f32f0e523aa (patch)
treeb483c578cf6ae76888b89188bedb03f539ab4cd3 /nuttx/graphics/nxglib
parent3cf6b4d6577c2f467dbb25dd0da8cdc6ad32a7b4 (diff)
downloadnuttx-70b6bb22af51defd713adfd452309f32f0e523aa.tar.gz
nuttx-70b6bb22af51defd713adfd452309f32f0e523aa.tar.bz2
nuttx-70b6bb22af51defd713adfd452309f32f0e523aa.zip
More trailing whilespace removal
Diffstat (limited to 'nuttx/graphics/nxglib')
-rw-r--r--nuttx/graphics/nxglib/nxglib_copyrun.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/graphics/nxglib/nxglib_copyrun.h b/nuttx/graphics/nxglib/nxglib_copyrun.h
index f0cb9097a..74a23c986 100644
--- a/nuttx/graphics/nxglib/nxglib_copyrun.h
+++ b/nuttx/graphics/nxglib/nxglib_copyrun.h
@@ -112,7 +112,7 @@ nxgl_copyrun_1bpp(FAR const uint8_t *src, FAR uint8_t *dest,
*
* indata: AAAA AAxx maps to nextdata: xxAA AAAA
*/
-
+
nextdata = (indata >> remainder);
#endif
@@ -194,7 +194,7 @@ nxgl_copyrun_2bpp(FAR const uint8_t *src, FAR uint8_t *dest,
*/
nextdata = (indata << shift);
-
+
#else
/* If CONFIG_NX_PACKEDMSFIRST is NOT defined, then bits (7-2*remainder)-7
* are carried over to the first pass through the loop. For example
@@ -202,7 +202,7 @@ nxgl_copyrun_2bpp(FAR const uint8_t *src, FAR uint8_t *dest,
*
* indata: AAAA AAxx maps to nextdata: xxAA AAAA
*/
-
+
nextdata = (indata >> shift);
#endif
@@ -282,14 +282,14 @@ nxgl_copyrun_4bpp(FAR const uint8_t *src, FAR uint8_t *dest,
*/
nextdata = (indata << 4);
-
+
#else
/* If CONFIG_NX_PACKEDMSFIRST is NOT defined, then bits 4-7
* are carried over to the first pass through the loop. For example:
*
* indata: AAAA xxxx maps to nextdata: xxxx AAAA
*/
-
+
nextdata = (indata >> 4);
#endif