Changes in / [077b9172:b1011dae] in mainline
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/src/main.c
r077b9172 rb1011dae 153 153 printf(".\n"); 154 154 155 void *kernel_end = (void *) PA2KA(BOOT_OFFSET + components[0].inflated); 155 156 printf("Booting the kernel...\n"); 156 157 jump_to_kernel((void *) PA2KA(BOOT_OFFSET), &bootinfo); -
uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.c
r077b9172 rb1011dae 42 42 #include "amdm37x_dispc.h" 43 43 44 #ifndef CONFIG_BFB_BPP45 #define CONFIG_BFB_BPP 2446 #endif47 48 #ifndef CONFIG_BFB_WIDTH49 #define CONFIG_BFB_WIDTH 102450 #endif51 52 #ifndef CONFIG_BFB_HEIGHT53 #define CONFIG_BFB_HEIGHT 76854 #endif55 56 57 44 static int change_mode(visualizer_t *vis, vslmode_t mode); 58 45 static int handle_damage(visualizer_t *vs, … … 122 109 instance->size = 0; 123 110 124 /* Default is 24bpp, use config option if available */125 visual_t visual = VISUAL_BGR_8_8_8; 111 visual_t visual = VISUAL_UNKNOWN; 112 126 113 switch (CONFIG_BFB_BPP) { 127 114 case 8: visual = VISUAL_INDIRECT_8; break;
Note:
See TracChangeset
for help on using the changeset viewer.