Changeset 1004b37 in mainline
- Timestamp:
- 2007-01-29T19:30:22Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 831a04d0
- Parents:
- 623b49f1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/fb/fb.c
r623b49f1 r1004b37 124 124 static void rgb_byte888(void *dst, int rgb) 125 125 { 126 uint8_t *scr = dst;126 uint8_t *scr = (uint8_t *) dst; 127 127 #if defined(FB_INVERT_ENDIAN) 128 128 scr[0] = RED(rgb, 8); … … 138 138 static int byte888_rgb(void *src) 139 139 { 140 uint8_t *scr = src;140 uint8_t *scr = (uint8_t *) src; 141 141 #if defined(FB_INVERT_ENDIAN) 142 142 return scr[0] << 16 | scr[1] << 8 | scr[2]; … … 266 266 * specified by the resolution. 267 267 */ 268 int i;268 unsigned int i; 269 269 270 270 for (i = 0; i < first; i++) … … 291 291 * See the comment in the dbbuffer case. 292 292 */ 293 int i;293 unsigned int i; 294 294 295 295 /* Move all rows one row up */
Note:
See TracChangeset
for help on using the changeset viewer.