Changeset f3386d7 in mainline for kernel


Ignore:
Timestamp:
2013-07-15T20:44:54Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f8d3df3
Parents:
273c976 (diff), a940f1d (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:

mainline changes

Location:
kernel
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • kernel/Makefile

    r273c976 rf3386d7  
    105105CLANG_CFLAGS = $(INCLUDES_FLAGS) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \
    106106        -ffreestanding -fno-builtin -nostdlib -nostdinc \
    107         -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \
     107        -Wall -Werror -Wextra -Wno-unused-parameter -Wmissing-prototypes \
    108108        -Werror-implicit-function-declaration -Wwrite-strings \
    109109        -integrated-as \
  • kernel/arch/arm32/src/mach/beaglebone/beaglebone.c

    r273c976 rf3386d7  
    177177{
    178178        const unsigned inum = am335x_irc_inum_get(bbone.irc_addr);
    179         am335x_irc_irq_ack(bbone.irc_addr);
    180179
    181180        irq_t *irq = irq_dispatch_and_lock(inum);
     
    187186                printf("Spurious interrupt\n");
    188187        }
     188
     189        am335x_irc_irq_ack(bbone.irc_addr);
    189190}
    190191
  • kernel/genarch/src/drivers/am335x/timer.c

    r273c976 rf3386d7  
    119119        /* Disable compare mode */
    120120        tclr &= ~AM335x_TIMER_TCLR_CE_FLAG;
    121         /* Enable the prescaler, divisor = 2 */
    122         tclr |= AM335x_TIMER_TCLR_PRE_FLAG;
    123         tclr &= ~(AM335x_TIMER_TCLR_PTV_MASK << AM335x_TIMER_TCLR_PTV_SHIFT);
     121
    124122        /* Enable auto-reload mode */
    125123        tclr |= AM335x_TIMER_TCLR_AR_FLAG;
  • kernel/generic/include/lib/memfnc.h

    r273c976 rf3386d7  
    3737
    3838#include <typedefs.h>
     39#include <cc.h>
    3940
    4041extern void *memset(void *, int, size_t)
    41     __attribute__ ((optimize("-fno-tree-loop-distribute-patterns")));
     42    ATTRIBUTE_OPTIMIZE("-fno-tree-loop-distribute-patterns");
    4243extern void *memcpy(void *, const void *, size_t)
    43     __attribute__ ((optimize("-fno-tree-loop-distribute-patterns")));
     44    ATTRIBUTE_OPTIMIZE("-fno-tree-loop-distribute-patterns");
    4445
    4546#endif
  • kernel/test/print/print4.c

    r273c976 rf3386d7  
    3636        uint8_t group;
    3737        for (group = 1; group < 4; group++) {
    38                 TPRINTF("%#" PRIx8 ": ", group << 5);
     38                TPRINTF("%#x: ", group << 5);
    3939               
    4040                uint8_t index;
     
    5252       
    5353        for (group = 4; group < 8; group++) {
    54                 TPRINTF("%#" PRIx8 ": ", group << 5);
     54                TPRINTF("%#x: ", group << 5);
    5555               
    5656                uint8_t index;
Note: See TracChangeset for help on using the changeset viewer.