Changes in kernel/arch/arm32/src/mach/gta02/gta02.c [527298a:d7533c7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/mach/gta02/gta02.c
r527298a rd7533c7 71 71 static void gta02_input_init(void); 72 72 static size_t gta02_get_irq_count(void); 73 static const char *gta02_get_platform_name(void); 73 74 74 75 static void gta02_timer_irq_init(void); … … 92 93 gta02_output_init, 93 94 gta02_input_init, 94 gta02_get_irq_count 95 gta02_get_irq_count, 96 gta02_get_platform_name 95 97 }; 96 98 … … 172 174 fb_parea.pbase = GTA02_FB_BASE; 173 175 fb_parea.frames = 150; 176 fb_parea.unpriv = false; 174 177 ddi_parea_register(&fb_parea); 175 178 } … … 235 238 } 236 239 240 const char *gta02_get_platform_name(void) 241 { 242 return "gta02"; 243 } 244 237 245 static void gta02_timer_irq_init(void) 238 246 {
Note:
See TracChangeset
for help on using the changeset viewer.