1. 08 5月, 2018 9 次提交
  2. 07 5月, 2018 2 次提交
    • T
      SPDX: Convert all of our multiple license tags to Linux Kernel style · 4549e789
      Tom Rini 提交于
      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 multiple licenses (in
      these cases, dual license) declared in the SPDX-License-Identifier tag.
      In this case we change from listing "LICENSE-A LICENSE-B" or "LICENSE-A
      or LICENSE-B" or "(LICENSE-A OR LICENSE-B)" to "LICENSE-A OR LICENSE-B"
      as per the Linux Kernel style document.  Note that parenthesis are
      allowed so when they were used before we continue to use them.
      Reviewed-by: NFabio Estevam <fabio.estevam@nxp.com>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      4549e789
    • T
      SPDX: Convert all of our single license tags to Linux Kernel style · 83d290c5
      Tom Rini 提交于
      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: NTom Rini <trini@konsulko.com>
      83d290c5
  3. 02 5月, 2018 5 次提交
  4. 01 5月, 2018 2 次提交
  5. 29 4月, 2018 3 次提交
    • P
      serial: serial_stm32: Rename status register flags · 8dc4e1fb
      Patrice Chotard 提交于
      Uart status register is named USART_ISR on STM32F7, STM32H7
      and STM32MP1 SoCs family, but USART_SR only on STM32F4 SoCs.
      
      Use USART_ISR_ prefix instead of USART_SR_ .
      Signed-off-by: NPatrice Chotard <patrice.chotard@st.com>
      8dc4e1fb
    • P
      serial: serial_stm32: Enable overrun · 7b3b74d3
      Patrice Chotard 提交于
      Enable uart overrun feature which allows to benefits of uart
      FIFO usage.
      
      Previously overrun management was disabled, this has to effect
      to bypassed the uart FIFO usage even if FIFO was enabled.
      In particular configuration, for example when video console is
      enabled, copy/pasting a long command line in console results in
      corruption. This is due to the fact that a lot of time is consumed
      in flushing the cache during frame buffer update, so uart chars are
      not read fast enough.
      
      By using uart FIFO and managing overrun, long command line can by
      copy/paste in console without being corrupted.
      Signed-off-by: NPatrice Chotard <patrice.chotard@st.com>
      7b3b74d3
    • A
      spl: disk: usb: Add dependencies to sprintf/strto* · ab9e12f6
      Alex Kiernan 提交于
      If SPL serial support is disabled nothing brings in sprintf, snprintf
      or simple_strtoul:
      
        env/built-in.o: In function `regex_callback':
        env/attr.c:128: undefined reference to `sprintf'
        disk/built-in.o: In function `blk_get_device_by_str':
        disk/part.c:386: undefined reference to `simple_strtoul'
        disk/part.c:395: undefined reference to `simple_strtoul'
        disk/built-in.o: In function `blk_get_device_part_str':
        disk/part.c:522: undefined reference to `simple_strtoul'
        disk/built-in.o: In function `part_set_generic_name':
        disk/part.c:704: undefined reference to `sprintf'
        drivers/built-in.o: In function `init_peripheral_ep':
        drivers/usb/musb-new/musb_gadget.c:1826: undefined reference to `sprintf'
        drivers/built-in.o: In function `musb_core_init':
        drivers/usb/musb-new/musb_core.c:1451: undefined reference to `snprintf'
      
      Add those dependencies here.
      Signed-off-by: NAlex Kiernan <alex.kiernan@gmail.com>
      ab9e12f6
  6. 28 4月, 2018 3 次提交
  7. 27 4月, 2018 1 次提交
  8. 26 4月, 2018 8 次提交
  9. 25 4月, 2018 3 次提交
  10. 24 4月, 2018 1 次提交
  11. 23 4月, 2018 3 次提交