An error occurred fetching the project authors.
  1. 10 May, 2024 1 commit
  2. 03 May, 2024 1 commit
  3. 23 Feb, 2024 1 commit
  4. 10 Jan, 2024 1 commit
  5. 29 Dec, 2023 1 commit
  6. 19 Sep, 2023 1 commit
  7. 18 Aug, 2023 3 commits
  8. 17 Aug, 2023 1 commit
  9. 21 Jun, 2023 1 commit
  10. 02 Jun, 2023 1 commit
  11. 18 May, 2023 1 commit
  12. 15 May, 2023 2 commits
  13. 26 Apr, 2023 3 commits
  14. 22 Feb, 2023 2 commits
    • Arnd Bergmann's avatar
      mfd: Remove toshiba tmio drivers · ca78476e
      Arnd Bergmann authored
      Four separate mfd drivers are in the "tmio" family, and all of
      them were used in now-removed PXA machines (eseries, tosa, and
      hx4700), so the mfd drivers and all its children can be removed
      as well.
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarLee Jones <lee@kernel.org>
      Link: https://lore.kernel.org/r/20230105134622.254560-19-arnd@kernel.org
      ca78476e
    • Randy Dunlap's avatar
      mfd: cs5535: Don't build on UML · 5ec32a3e
      Randy Dunlap authored
      The cs5535-mfd driver uses CPU-specific data that is not available
      for ARCH=um builds, so don't allow it to be built for UML.
      
      Prevents these build errors:
      
      In file included from ../arch/x86/include/asm/olpc.h:7,
                       from ../drivers/mfd/cs5535-mfd.c:17:
      ../arch/x86/include/asm/geode.h: In function ‘is_geode_gx’:
      ../arch/x86/include/asm/geode.h:16:31: error: ‘struct cpuinfo_um’ has no member named ‘x86_vendor’
         16 |         return ((boot_cpu_data.x86_vendor == X86_VENDOR_NSC) &&
      ../arch/x86/include/asm/geode.h:16:46: error: ‘X86_VENDOR_NSC’ undeclared (first use in this function); did you mean ‘X86_VENDOR_ANY’?
         16 |         return ((boot_cpu_data.x86_vendor == X86_VENDOR_NSC) &&
      ../arch/x86/include/asm/geode.h:17:31: error: ‘struct cpuinfo_um’ has no member named ‘x86’
         17 |                 (boot_cpu_data.x86 == 5) &&
      ../arch/x86/include/asm/geode.h:18:31: error: ‘struct cpuinfo_um’ has no member named ‘x86_model’
         18 |                 (boot_cpu_data.x86_model == 5));
      ../arch/x86/include/asm/geode.h: In function ‘is_geode_lx’:
      ../arch/x86/include/asm/geode.h:23:31: error: ‘struct cpuinfo_um’ has no member named ‘x86_vendor’
         23 |         return ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) &&
      ../arch/x86/include/asm/geode.h:23:46: error: ‘X86_VENDOR_AMD’ undeclared (first use in this function); did you mean ‘X86_VENDOR_ANY’?
         23 |         return ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) &&
      ../arch/x86/include/asm/geode.h:24:31: error: ‘struct cpuinfo_um’ has no member named ‘x86’
         24 |                 (boot_cpu_data.x86 == 5) &&
      ../arch/x86/include/asm/geode.h:25:31: error: ‘struct cpuinfo_um’ has no member named ‘x86_model’
         25 |                 (boot_cpu_data.x86_model == 10));
      
      Fixes: 68f5d3f3 ("um: add PCI over virtio emulation driver")
      Signed-off-by: default avatarRandy Dunlap <rdunlap@infradead.org>
      Signed-off-by: default avatarLee Jones <lee@kernel.org>
      Link: https://lore.kernel.org/r/20221201012541.11809-1-rdunlap@infradead.org
      5ec32a3e
  15. 01 Feb, 2023 3 commits
    • Arnd Bergmann's avatar
      mfd: remove htc-pasic3 driver · 61d9420a
      Arnd Bergmann authored
      The htc-pasic3 MFD device was only used in the PXA magician
      machine that is now removed, so this can be recycled as well.
      
      Cc: Lee Jones <lee@kernel.org>
      Cc: Philipp Zabel <philipp.zabel@gmail.com>
      Acked-by: default avatarRobert Jarzmik <robert.jarzmik@free.fr>
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      61d9420a
    • Arnd Bergmann's avatar
      mfd: remove ucb1400 support · 2e99b1b0
      Arnd Bergmann authored
      The ucb1400 MFD driver and its gpio and touchscreen child
      drivers were only used on a few PXA machines that were unused
      for a while and are now removed.
      
      Removing these leaves the AC97 support as ALSA specific,
      no other drivers are now connected through this interface.
      
      Cc: Linus Walleij <linus.walleij@linaro.org>
      Cc: Bartosz Golaszewski <brgl@bgdev.pl>
      Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
      Cc: Lee Jones <lee@kernel.org>
      Cc: Jaroslav Kysela <perex@perex.cz>
      Cc: Takashi Iwai <tiwai@suse.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: linux-kernel@vger.kernel.org
      Cc: linux-gpio@vger.kernel.org
      Cc: linux-input@vger.kernel.org
      Cc: alsa-devel@alsa-project.org
      Acked-by: default avatarRobert Jarzmik <robert.jarzmik@free.fr>
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      2e99b1b0
    • Arnd Bergmann's avatar
      mfd: remove toshiba tmio drivers · 8971bb81
      Arnd Bergmann authored
      Four separate mfd drivers are in the "tmio" family, and all of
      them were used in now-removed PXA machines (eseries, tosa, and
      hx4700), so the mfd drivers and all its children can be removed
      as well.
      
      Cc: Lee Jones <lee@kernel.org>
      Cc: Wolfram Sang <wsa+renesas@sang-engineering.com>
      Cc: linux-kernel@vger.kernel.org
      Cc: linux-mmc@vger.kernel.org
      Cc: linux-renesas-soc@vger.kernel.org
      Acked-by: default avatarRobert Jarzmik <robert.jarzmik@free.fr>
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      8971bb81
  16. 27 Jan, 2023 2 commits
  17. 12 Jan, 2023 2 commits
  18. 08 Dec, 2022 1 commit
    • Jean Delvare's avatar
      mfd: Drop obsolete dependencies on COMPILE_TEST · 96836a35
      Jean Delvare authored
      Since commit 0166dc11 ("of: make CONFIG_OF user selectable"), it
      is possible to test-build any driver which depends on OF on any
      architecture by explicitly selecting OF. Therefore depending on
      COMPILE_TEST as an alternative is no longer needed.
      
      It is actually better to always build such drivers with OF enabled,
      so that the test builds are closer to how each driver will actually be
      built on its intended target. Building them without OF may not test
      much as the compiler will optimize out potentially large parts of the
      code. In the worst case, this could even pop false positive warnings.
      Dropping COMPILE_TEST here improves the quality of our testing and
      avoids wasting time on non-existent issues.
      
      As a minor optimization, this also lets us drop of_match_ptr(), as we
      now know what it will resolve to, we might as well save cpp some work.
      Signed-off-by: default avatarJean Delvare <jdelvare@suse.de>
      Cc: Lee Jones <lee@kernel.org>
      Cc: Bartosz Golaszewski <brgl@bgdev.pl>
      Cc: Chanwoo Choi <cw00.choi@samsung.com>
      Cc: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
      Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
      Cc: Luca Ceresoli <luca.ceresoli@bootlin.com>
      Cc: "Jonathan Neuschäfer" <j.neuschaefer@gmx.net>
      Signed-off-by: default avatarLee Jones <lee@kernel.org>
      Link: https://lore.kernel.org/r/20221122154134.58a7a18b@endymion.delvare
      96836a35
  19. 07 Dec, 2022 8 commits
  20. 28 Sep, 2022 4 commits