Changeset 63e27ef in mainline for kernel/genarch/src/fb/fb.c
- Timestamp:
- 2017-06-19T21:47:42Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- deacc58d
- Parents:
- 7354b5e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/fb/fb.c
r7354b5e r63e27ef 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> … … 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.