07 May, 2018

1 commit

  • When U-Boot started using SPDX tags we were among the early adopters and
    there weren't a lot of other examples to borrow from. So we picked the
    area of the file that usually had a full license text and replaced it
    with an appropriate SPDX-License-Identifier: entry. Since then, the
    Linux Kernel has adopted SPDX tags and they place it as the very first
    line in a file (except where shebangs are used, then it's second line)
    and with slightly different comment styles than us.

    In part due to community overlap, in part due to better tag visibility
    and in part for other minor reasons, switch over to that style.

    This commit changes all instances where we have a single declared
    license in the tag as both the before and after are identical in tag
    contents. There's also a few places where I found we did not have a tag
    and have introduced one.

    Signed-off-by: Tom Rini

    Tom Rini
     

06 Mar, 2018

1 commit


13 Aug, 2013

1 commit

  • This patch moves all the font configuration values into video_font_data.h
    so they are all in the right place with the font. The video_font.h now only
    includes video_font_data.h and will allow us to select and include different
    font once more fonts are added.

    Signed-off-by: Marek Vasut
    Cc: Anatolij Gustschin
    [agust: fixed build warning for mcc200]
    Signed-off-by: Anatolij Gustschin

    Marek Vasut
     

24 Jul, 2013

1 commit


16 Nov, 2011

1 commit

  • While video_font.h is useful even without referencing the font data, it
    is not possible to be included multiple times because it defines font
    data array right in the header.

    This patch splits the font data array into video_font_data.h and so now
    video_font.h can be included multiple times. This at least solves the
    code duplication in board/mcc200/lcd.c.

    Signed-off-by: Che-Liang Chiou
    Acked-by: Mike Frysinger

    Che-Liang Chiou