Ignore:
Timestamp:
2011-02-09T11:46:47Z (14 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cb15135a
Parents:
a49c4002 (diff), 0b37882 (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 mainline changes

Local modifications:

  • change pipefs and ext2 to build again (use async_* calls instead of ipc_*)
File:
1 edited

Legend:

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

    ra49c4002 rcf2af94  
    7171static void gta02_input_init(void);
    7272static size_t gta02_get_irq_count(void);
     73static const char *gta02_get_platform_name(void);
    7374
    7475static void gta02_timer_irq_init(void);
     
    9293        gta02_output_init,
    9394        gta02_input_init,
    94         gta02_get_irq_count
     95        gta02_get_irq_count,
     96        gta02_get_platform_name
    9597};
    9698
     
    172174                fb_parea.pbase = GTA02_FB_BASE;
    173175                fb_parea.frames = 150;
     176                fb_parea.unpriv = false;
    174177                ddi_parea_register(&fb_parea);
    175178        }
     
    235238}
    236239
     240const char *gta02_get_platform_name(void)
     241{
     242        return "gta02";
     243}
     244
    237245static void gta02_timer_irq_init(void)
    238246{
Note: See TracChangeset for help on using the changeset viewer.