Changeset 95c675b in mainline for kernel/genarch/src/fb/fb.c
- Timestamp:
- 2017-10-17T13:11:35Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60af4cdb
- Parents:
- dbf32b1 (diff), a416d070 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
kernel/genarch/src/fb/fb.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/fb/fb.c
rdbf32b1 r95c675b 34 34 */ 35 35 36 #include <assert.h> 37 #include <debug.h> 36 38 #include <genarch/fb/font-8x16.h> 37 39 #include <genarch/fb/fb.h> … … 43 45 #include <align.h> 44 46 #include <panic.h> 45 #include <mem str.h>47 #include <mem.h> 46 48 #include <config.h> 47 49 #include <bitops.h> … … 511 513 outdev_t *fb_init(fb_properties_t *props) 512 514 { 513 ASSERT(props);514 ASSERT(props->x > 0);515 ASSERT(props->y > 0);516 ASSERT(props->scan > 0);515 assert(props); 516 assert(props->x > 0); 517 assert(props->y > 0); 518 assert(props->scan > 0); 517 519 518 520 rgb_conv_t rgb_conv;
Note:
See TracChangeset
for help on using the changeset viewer.
