1. 23 2月, 2021 1 次提交
  2. 14 12月, 2020 3 次提交
  3. 13 12月, 2020 1 次提交
    • S
      dm: treewide: Rename auto_alloc_size members to be shorter · 41575d8e
      Simon Glass 提交于
      This construct is quite long-winded. In earlier days it made some sense
      since auto-allocation was a strange concept. But with driver model now
      used pretty universally, we can shorten this to 'auto'. This reduces
      verbosity and makes it easier to read.
      
      Coincidentally it also ensures that every declaration is on one line,
      thus making dtoc's job easier.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      41575d8e
  4. 29 10月, 2020 1 次提交
  5. 27 10月, 2020 6 次提交
  6. 23 9月, 2020 1 次提交
  7. 20 8月, 2020 2 次提交
  8. 24 6月, 2020 1 次提交
  9. 19 5月, 2020 2 次提交
  10. 27 4月, 2020 1 次提交
  11. 09 3月, 2020 1 次提交
  12. 06 2月, 2020 2 次提交
  13. 08 10月, 2019 1 次提交
  14. 09 8月, 2019 1 次提交
  15. 17 7月, 2019 1 次提交
  16. 24 1月, 2019 1 次提交
  17. 15 6月, 2018 1 次提交
  18. 31 5月, 2018 2 次提交
  19. 11 5月, 2018 1 次提交
  20. 07 5月, 2018 1 次提交
    • 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
  21. 02 5月, 2018 1 次提交
  22. 05 3月, 2018 1 次提交
  23. 01 3月, 2018 1 次提交
  24. 01 6月, 2017 2 次提交
    • S
      dm: core: Replace of_offset with accessor (part 2) · da409ccc
      Simon Glass 提交于
      At present devices use a simple integer offset to record the device tree
      node associated with the device. In preparation for supporting a live
      device tree, which uses a node pointer instead, refactor existing code to
      access this field through an inline function.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      da409ccc
    • S
      dm: Rename dev_addr..() functions · a821c4af
      Simon Glass 提交于
      These support the flat device tree. We want to use the dev_read_..()
      prefix for functions that support both flat tree and live tree. So rename
      the existing functions to avoid confusion.
      
      In the end we will have:
      
         1. dev_read_addr...()    - works on devices, supports flat/live tree
         2. devfdt_get_addr...()  - current functions, flat tree only
         3. of_get_address() etc. - new functions, live tree only
      
      All drivers will be written to use 1. That function will in turn call
      either 2 or 3 depending on whether the flat or live tree is in use.
      
      Note this involves changing some dead code - the imx_lpi2c.c file.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      a821c4af
  25. 17 2月, 2017 2 次提交
  26. 23 1月, 2017 1 次提交
  27. 10 10月, 2016 1 次提交