Skip to content
Snippets Groups Projects
  1. Dec 15, 2024
  2. Dec 03, 2024
  3. Oct 30, 2024
  4. Oct 27, 2024
  5. Oct 21, 2024
  6. Oct 19, 2024
  7. Oct 18, 2024
  8. Oct 17, 2024
  9. Oct 16, 2024
  10. Oct 14, 2024
  11. Oct 12, 2024
  12. Oct 09, 2024
  13. Oct 08, 2024
  14. Oct 06, 2024
  15. Oct 04, 2024
  16. Oct 03, 2024
  17. Oct 02, 2024
    • Al Viro's avatar
      move asm/unaligned.h to linux/unaligned.h · 5f60d5f6
      Al Viro authored
      asm/unaligned.h is always an include of asm-generic/unaligned.h;
      might as well move that thing to linux/unaligned.h and include
      that - there's nothing arch-specific in that header.
      
      auto-generated by the following:
      
      for i in `git grep -l -w asm/unaligned.h`; do
      	sed -i -e "s/asm\/unaligned.h/linux\/unaligned.h/" $i
      done
      for i in `git grep -l -w asm-generic/unaligned.h`; do
      	sed -i -e "s/asm-generic\/unaligned.h/linux\/unaligned.h/" $i
      done
      git mv include/asm-generic/unaligned.h include/linux/unaligned.h
      git mv tools/include/asm-generic/unaligned.h tools/include/linux/unaligned.h
      sed -i -e "/unaligned.h/d" include/asm-generic/Kbuild
      sed -i -e "s/__ASM_GENERIC/__LINUX/" include/linux/unaligned.h tools/include/linux/unaligned.h
      5f60d5f6
    • Miquel Raynal's avatar
      ASoC: dt-bindings: davinci-mcasp: Fix interrupts property · 17d8adc4
      Miquel Raynal authored
      
      My understanding of the interrupts property is that it can either be:
      1/ - TX
      2/ - TX
         - RX
      3/ - Common/combined.
      
      There are very little chances that either:
         - TX
         - Common/combined
      or even
         - TX
         - RX
         - Common/combined
      could be a thing.
      
      Looking at the interrupt-names definition (which uses oneOf instead of
      anyOf), it makes indeed little sense to use anyOf in the interrupts
      definition. I believe this is just a mistake, hence let's fix it.
      
      Fixes: 8be90641 ("ASoC: dt-bindings: davinci-mcasp: convert McASP bindings to yaml schema")
      Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
      Reviewed-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
      Link: https://patch.msgid.link/20241001204749.390054-1-miquel.raynal@bootlin.com
      
      
      Signed-off-by: default avatarMark Brown <broonie@kernel.org>
      Unverified
      17d8adc4
Loading