Changeset 8ff0bd2 in mainline for kernel/arch/arm32/src/mach/gta02/gta02.c
- Timestamp:
- 2011-09-04T11:30:58Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 03bc76a
- Parents:
- d2c67e7 (diff), deac215e (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/mach/gta02/gta02.c
rd2c67e7 r8ff0bd2 39 39 #include <mm/page.h> 40 40 #include <genarch/fb/fb.h> 41 #include < genarch/fb/visuals.h>41 #include <abi/fb/visuals.h> 42 42 #include <genarch/drivers/s3c24xx_uart/s3c24xx_uart.h> 43 43 #include <genarch/drivers/s3c24xx_irqc/s3c24xx_irqc.h> … … 158 158 { 159 159 #ifdef CONFIG_FB 160 parea_t fb_parea;161 162 160 fb_properties_t prop = { 163 161 .addr = GTA02_FB_BASE, … … 170 168 171 169 outdev_t *fb_dev = fb_init(&prop); 172 if (fb_dev) {170 if (fb_dev) 173 171 stdout_wire(fb_dev); 174 fb_parea.pbase = GTA02_FB_BASE;175 fb_parea.frames = 150;176 fb_parea.unpriv = false;177 ddi_parea_register(&fb_parea);178 }179 172 #endif 180 173 181 174 /* Initialize serial port of the debugging console. */ 182 s3c24xx_uart_io_t *scons_io; 183 184 scons_io = (void *) hw_map(GTA02_SCONS_BASE, PAGE_SIZE); 185 gta02_scons_dev = s3c24xx_uart_init(scons_io, S3C24XX_INT_UART2); 175 gta02_scons_dev = 176 s3c24xx_uart_init(GTA02_SCONS_BASE, S3C24XX_INT_UART2); 186 177 187 178 if (gta02_scons_dev) {
Note:
See TracChangeset
for help on using the changeset viewer.