Ignore:
Timestamp:
2018-04-12T16:27:17Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3cf22f9
Parents:
76d0981d
git-author:
Jiri Svoboda <jiri@…> (2018-04-11 19:25:33)
git-committer:
Jiri Svoboda <jiri@…> (2018-04-12 16:27:17)
Message:

Make ccheck-fix again and commit more good files.

File:
1 edited

Legend:

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

    r76d0981d r3bacee1  
    103103        /* Initialize interrupt controller */
    104104        raspi.irc = (void *) km_map(BCM2835_IRC_ADDR, sizeof(bcm2835_irc_t),
    105                                     PAGE_NOT_CACHEABLE);
     105            PAGE_NOT_CACHEABLE);
    106106        assert(raspi.irc);
    107107        bcm2835_irc_init(raspi.irc);
     
    109109        /* Initialize system timer */
    110110        raspi.timer = (void *) km_map(BCM2835_TIMER_ADDR,
    111                                       sizeof(bcm2835_timer_t),
    112                                       PAGE_NOT_CACHEABLE);
     111            sizeof(bcm2835_timer_t),
     112            PAGE_NOT_CACHEABLE);
    113113}
    114114
     
    129129static void raspberrypi_cpu_halt(void)
    130130{
    131         while (true) ;
     131        while (true)
     132                ;
    132133}
    133134
     
    184185#ifdef CONFIG_PL011_UART
    185186        if (pl011_uart_init(&raspi.uart, BCM2835_UART_IRQ,
    186                             BCM2835_UART0_BASE_ADDRESS))
     187            BCM2835_UART0_BASE_ADDRESS))
    187188                stdout_wire(&raspi.uart.outdev);
    188189#endif
Note: See TracChangeset for help on using the changeset viewer.