1. 30 Jun, 2022 36 commits
  2. 29 Jun, 2022 4 commits
    • Linus Torvalds's avatar
      Merge tag 'platform-drivers-x86-v5.19-3' of... · d9b2ba67
      Linus Torvalds authored
      Merge tag 'platform-drivers-x86-v5.19-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86
      
      Pull x86 platform driver fixes from Hans de Goede:
      
       - thinkpad_acpi/ideapad-laptop: mem-leak and platform-profile fixes
      
       - panasonic-laptop: missing hotkey presses regression fix
      
       - some hardware-id additions
      
       - some other small fixes
      
      * tag 'platform-drivers-x86-v5.19-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86:
        platform/x86: hp-wmi: Ignore Sanitization Mode event
        platform/x86: thinkpad_acpi: do not use PSC mode on Intel platforms
        platform/x86: thinkpad-acpi: profile capabilities as integer
        platform/x86: panasonic-laptop: filter out duplicate volume up/down/mute keypresses
        platform/x86: panasonic-laptop: don't report duplicate brightness key-presses
        platform/x86: panasonic-laptop: revert "Resolve hotkey double trigger bug"
        platform/x86: panasonic-laptop: sort includes alphabetically
        platform/x86: panasonic-laptop: de-obfuscate button codes
        ACPI: video: Change how we determine if brightness key-presses are handled
        platform/x86: ideapad-laptop: Add Ideapad 5 15ITL05 to ideapad_dytc_v4_allow_table[]
        platform/x86: ideapad-laptop: Add allow_v4_dytc module parameter
        platform/x86: thinkpad_acpi: Fix a memory leak of EFCH MMIO resource
        platform/mellanox: nvsw-sn2201: fix error code in nvsw_sn2201_create_static_devices()
        platform/x86: intel/pmc: Add Alder Lake N support to PMC core driver
      d9b2ba67
    • Linus Torvalds's avatar
      Merge tag '5.19-rc4-ksmbd-server-fixes' of git://git.samba.org/ksmbd · 732f3069
      Linus Torvalds authored
      Pull ksmbd server fixes from Steve French:
      
       - seek null check (don't use f_seek op directly and blindly)
      
       - offset validation in FSCTL_SET_ZERO_DATA
      
       - fallocate fix (relates e.g. to xfstests generic/091 and 263)
      
       - two cleanup fixes
      
       - fix socket settings on some arch
      
      * tag '5.19-rc4-ksmbd-server-fixes' of git://git.samba.org/ksmbd:
        ksmbd: use vfs_llseek instead of dereferencing NULL
        ksmbd: check invalid FileOffset and BeyondFinalZero in FSCTL_ZERO_DATA
        ksmbd: set the range of bytes to zero without extending file size in FSCTL_ZERO_DATA
        ksmbd: remove duplicate flag set in smb2_write
        ksmbd: smbd: Remove useless license text when SPDX-License-Identifier is already used
        ksmbd: use SOCK_NONBLOCK type for kernel_accept()
      732f3069
    • Michael Walle's avatar
      NFC: nxp-nci: don't print header length mismatch on i2c error · 9577fc5f
      Michael Walle authored
      Don't print a misleading header length mismatch error if the i2c call
      returns an error. Instead just return the error code without any error
      message.
      Signed-off-by: default avatarMichael Walle <michael@walle.cc>
      Reviewed-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      9577fc5f
    • Michael Walle's avatar
      NFC: nxp-nci: Don't issue a zero length i2c_master_read() · eddd95b9
      Michael Walle authored
      There are packets which doesn't have a payload. In that case, the second
      i2c_master_read() will have a zero length. But because the NFC
      controller doesn't have any data left, it will NACK the I2C read and
      -ENXIO will be returned. In case there is no payload, just skip the
      second i2c master read.
      
      Fixes: 6be88670 ("NFC: nxp-nci_i2c: Add I2C support to NXP NCI driver")
      Signed-off-by: default avatarMichael Walle <michael@walle.cc>
      Reviewed-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      eddd95b9