Changeset 95c675b in mainline for kernel/genarch/src/fb/fb.c


Ignore:
Timestamp:
2017-10-17T13:11:35Z (8 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
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.
Message:

Merge mainline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/fb/fb.c

    rdbf32b1 r95c675b  
    3434 */
    3535
     36#include <assert.h>
     37#include <debug.h>
    3638#include <genarch/fb/font-8x16.h>
    3739#include <genarch/fb/fb.h>
     
    4345#include <align.h>
    4446#include <panic.h>
    45 #include <memstr.h>
     47#include <mem.h>
    4648#include <config.h>
    4749#include <bitops.h>
     
    511513outdev_t *fb_init(fb_properties_t *props)
    512514{
    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);
    517519       
    518520        rgb_conv_t rgb_conv;
Note: See TracChangeset for help on using the changeset viewer.