1. 17 Apr, 2023 2 commits
  2. 14 Apr, 2023 1 commit
  3. 11 Apr, 2023 1 commit
  4. 06 Apr, 2023 1 commit
  5. 28 Mar, 2023 1 commit
    • Will Deacon's avatar
      Revert "ARM: mach-virt: Select PMUv3 driver by default" · 4248d043
      Will Deacon authored
      This reverts commit 3b16f626.
      
      Selecting a Kconfig option that has its own set of dependencies tends to
      end badly, and in this case 'randconfig' builds blew up on 32-bit ARM
      where ARM_PMUV3 was being selecting with HW_PERF_EVENTS=n:
      
        |    drivers/perf/arm_pmuv3.c:68:5: error: use of undeclared identifier 'DTLB'
        |            [C(DTLB)][C(OP_READ)][C(RESULT_ACCESS)] = ARMV8_PMUV3_PERFCTR_L1D_TLB,
        |               ^
        |    fatal error: too many errors emitted, stopping now [-ferror-limit=]
        |    20 errors generated.
        |
        | Kconfig warnings: (for reference only)
        |    WARNING: unmet direct dependencies detected for ARM_PMUV3
        |    Depends on [n]: PERF_EVENTS [=y] && HW_PERF_EVENTS [=n] && (ARM [=y] && CPU_V7 [=y] || ARM64)
        |    Selected by [y]:
        |    - ARCH_VIRT [=y] && ARCH_MULTI_V7 [=y] && PERF_EVENTS [=y]
      
      As suggested by Marc, just drop the 'select' clause altogether by
      reverting the patch which introduced it.
      
      Link: https://lore.kernel.org/r/202303281539.zzI4vpw1-lkp@intel.comReported-by: default avatarkernel test robot <lkp@intel.com>
      Reported-by: default avatarArnd Bergmann <arnd@arndb.de>
      Suggested-by: default avatarMarc Zyngier <maz@kernel.org>
      Signed-off-by: default avatarWill Deacon <will@kernel.org>
      4248d043
  6. 27 Mar, 2023 17 commits
  7. 19 Mar, 2023 16 commits
  8. 18 Mar, 2023 1 commit
    • Linus Torvalds's avatar
      Merge tag 'fbdev-for-6.3-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev · a3671bd8
      Linus Torvalds authored
      Pull fbdev fixes from Helge Deller:
       "The majority of lines changed is due to a code style cleanup in the
        pnmtologo helper program.
      
        Arnd removed the omap1 osk driver and the SIS fb driver is now
        orphaned.
      
        Other than that it's the usual bunch of small fixes and cleanups, e.g.
        prevent possible divide-by-zero in various fb drivers if the pixclock
        is zero and various conversions to devm_platform*() and of_property*()
        functions:
      
         - Drop omap1 osk driver
      
         - Various potential divide by zero pixclock fixes
      
         - Add pixelclock and fb_check_var() to stifb
      
         - Code style cleanups and indenting fixes"
      
      * tag 'fbdev-for-6.3-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev:
        fbdev: Use of_property_present() for testing DT property presence
        fbdev: au1200fb: Fix potential divide by zero
        fbdev: lxfb: Fix potential divide by zero
        fbdev: intelfb: Fix potential divide by zero
        fbdev: nvidia: Fix potential divide by zero
        fbdev: stifb: Provide valid pixelclock and add fb_check_var() checks
        fbdev: omapfb: remove omap1 osk driver
        fbdev: xilinxfb: Use devm_platform_get_and_ioremap_resource()
        fbdev: wm8505fb: Use devm_platform_ioremap_resource()
        fbdev: pxa3xx-gcu: Use devm_platform_get_and_ioremap_resource()
        fbdev: Use of_property_read_bool() for boolean properties
        fbdev: clps711x-fb: Use devm_platform_get_and_ioremap_resource()
        fbdev: tgafb: Fix potential divide by zero
        MAINTAINERS: orphan SIS FRAMEBUFFER DRIVER
        fbdev: omapfb: cleanup inconsistent indentation
        drivers: video: logo: add SPDX comment, remove GPL notice in pnmtologo.c
        drivers: video: logo: fix code style issues in pnmtologo.c
      a3671bd8