drm/amd/display: Prune per-tile Timing from Apple Studio Display Primary Tile
From Fangzhi Zuo
4628e40c9ca79c7ca6d55ee0d5da1839c2d0b4c7 in linux-6.18.y/6.18.50
7a4dd08c3f921576c6a7524f60e4f0e4601835d2 in mainline linux
drm/amd/display: hide Apple Studio Display secondary tile
From Jerry Zuo
7d860bed133698eefa7f5f808c7dbce1c2738b96 in linux-6.18.y/6.18.50
49521be4809d63fe3efb6bc68ee11cb1e1ef3d63 in mainline linux
drm/amd/display: Refactor amdgpu_dm_connector_detect (v2)
From Timur Kristof
c6b915f0df31121524253f1410da7b3dd43e92b7 in linux-6.18.y/6.18.50
8223a605744bb471f31018eac9075a539415b16f in mainline linux
drm/amd/display: Skip PHY SSC reduction on some 8K panels
From Roman Li
a1fa3d1197cc2a5d8d55f9cab8bb07c3367431ec in linux-6.18.y/6.18.50
144169e7be0831e09958a906d08d1856751aa6c6 in mainline linux
drm/amd/display: Avoid NULL dereference in dc_dmub_srv error paths
From Srinivasan Shanmugam
2ab18de5ebb11c76bfc8087c5a09fbcccd0dea8a in linux-6.18.y/6.18.50
4ae3e16f4b3bf64140f773629b765d605ee079a9 in mainline linux
avoid an uninitialised stack read
it is possible for bios_sysctl() to be called with namelen=0:
sys_sysctl() name={ CTL_MACHDEP, CPU_BIOS }, namelen=2
cpu_sysctl() name={ CPU_BIOS }, namelen=1
bios_sysctl() name={}, namelen=0
if name[0] was 2 (BIOS_DISKINFO) the function would not return ENOTDIR
as intended
found by and diff from Johann Hoepfner, ok deraadt@
If we're hibernating we need to load the firmware after we resume. This
also means that we should clean up before we hibernate to make sure we
don't do stupid stuff like polling sensors before the firmware gets
loaded.
ok mglocker@
Add '-p' to sftp mkdir/lmkdir to create directories as required
The -p option causes the mkdir and lmkdir commands to create any missing
intermediate directories. If '-p' is specified, it is not considered an
error if a directory already exists.
With / OK djm@