Changes in kernel/genarch/src/fb/fb.c [ba7371f9:a71c158] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/fb/fb.c
rba7371f9 ra71c158 41 41 #include <console/console.h> 42 42 #include <sysinfo/sysinfo.h> 43 #include <mm/page.h>44 43 #include <mm/slab.h> 45 44 #include <align.h> … … 49 48 #include <bitops.h> 50 49 #include <print.h> 51 #include <str .h>50 #include <string.h> 52 51 #include <ddi/ddi.h> 53 #include < typedefs.h>52 #include <arch/types.h> 54 53 #include <byteorder.h> 55 54 … … 554 553 fbdev->data = instance; 555 554 556 spinlock_initialize(&instance->lock, "*fb .instance.lock");555 spinlock_initialize(&instance->lock, "*fb_lock"); 557 556 instance->rgb_conv = rgb_conv; 558 557 instance->pixelbytes = pixelbytes;
Note:
See TracChangeset
for help on using the changeset viewer.