12 Apr, 2014

1 commit


07 May, 2013

1 commit

  • arch/blackfin/mach-bf538/boards/ezkit.c:768:2: error: #endif without #if

    Introduced by commit cf93feb3a0dee97c7896016a352a3226139fbcf4 ("blackfin:
    twi: Move TWI peripheral pin request array to platform data"), which
    removed the #if, but forgot about the #endif.

    Signed-off-by: Geert Uytterhoeven
    Signed-off-by: Steven Miao

    Geert Uytterhoeven
     

13 Dec, 2012

1 commit


21 May, 2012

3 commits


27 Apr, 2012

1 commit

  • This file has lots and lots of ifdef, around structure decls
    and structure usages. The failure issue was that we would
    build the BF538-EZKIT_defconfig and get:

    arch/blackfin/mach-bf538/boards/ezkit.c:924:3: error: 'bfin_lq035q1_device'
    undeclared here (not in a function)

    even though the same ifdef _appeared_ to enable both the struct
    declaration and the code that used it. Yet cpp was telling us we
    didn't have the struct, but we still had the usage of it.

    However, _appeared_ is the operative word. After marking all the
    anonymous #endif with their parent #ifdef config options, it was
    _then_ clear that there was a misplaced #endif that was hiding
    the struct declaration.

    The real guts of the patch boils down to this:

    -#endif
    +#endif /* CONFIG_MTD_M25P80 */
    +#endif /* CONFIG_SPI_BFIN5XX */
    [...]
    -#endif /* spi master and devices */

    but since I had to tag the #endif with their respective #ifdef
    options to find this misplaced SPI endif, it would be silly to
    then go and delete them all. So they stay.

    Cc: Sonic Zhang
    Cc: Bob Liu
    Acked-by: Mike Frysinger
    Signed-off-by: Paul Gortmaker

    Paul Gortmaker
     

09 Jan, 2012

1 commit


14 Nov, 2011

1 commit


23 Jul, 2011

3 commits


29 May, 2011

1 commit


25 May, 2011

3 commits


10 Jan, 2011

9 commits


23 Oct, 2010

1 commit


22 Oct, 2010

2 commits


07 Oct, 2010

2 commits

  • Rename h/w IRQ flags handling functions to be in line with what is expected for
    the irq renaming patch. This renames local_*_hw() to hard_local_*() using the
    following perl command:

    perl -pi -e 's/local_irq_(restore|enable|disable)_hw/hard_local_irq_\1/ or s/local_irq_save_hw([_a-z]*)[(]flags[)]/flags = hard_local_irq_save\1()/' `find arch/blackfin/ -name "*.[ch]"`

    and then fixing up asm/irqflags.h manually.

    Additionally, arch/hard_local_save_flags() and arch/hard_local_irq_save() both
    return the flags rather than passing it through the argument list.

    Signed-off-by: David Howells

    David Howells
     
  • Split the PLL control code from the Blackfin machine-specific cdef headers so
    that the irqflags functions can be renamed without incurring a header loop.

    Signed-off-by: David Howells

    David Howells
     

28 Aug, 2010

1 commit


07 Aug, 2010

4 commits


21 May, 2010

1 commit


09 Mar, 2010

4 commits