Ignore:
Timestamp:
2012-09-23T16:19:26Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
21aab25
Parents:
47d2ca9 (diff), 40ad375 (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 changes from the beagleboard-xm branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/mach/beagleboardxm/beagleboardxm.c

    r47d2ca9 rd085df10  
    9696                ++order;
    9797        }
    98         printf("Allocating %d (2^%d) frames.\n", size, order);
    9998        /* prefer highmem as we don't care about virtual mapping. */
    10099        void *buffer = frame_alloc(order, FRAME_LOWMEM);
    101         ASSERT(buffer);
     100        if (!buffer) {
     101                printf("Failed to allocate framebuffer.\n");
     102                return;
     103        }
    102104
    103105        amdm37x_dispc_setup_fb(beagleboard.dispc, width, height, bpp,
Note: See TracChangeset for help on using the changeset viewer.