Re: [PATCH v3 02/12] dt-bindings: display: mediatek: add MT8195 hdmi bindings

2022-12-25 Thread 胡俊光

Re: [PATCH 1/3] ASoC: dt-bindings: Extend name-prefix.yaml into common DAI properties

2022-12-25 Thread patchwork-bot+chrome-platform
Hello: This series was applied to chrome-platform/linux.git (for-next) by Mark Brown : On Sat, 3 Dec 2022 17:04:40 +0100 you wrote: > Rename name-prefix.yaml into common DAI schema and document > '#sound-dai-cells' for completeness. The '#sound-dai-cells' cannot be > really constrained, as ther

Re: [PATCH 1/3] ASoC: dt-bindings: Extend name-prefix.yaml into common DAI properties

2022-12-25 Thread patchwork-bot+chrome-platform
Hello: This series was applied to chrome-platform/linux.git (for-kernelci) by Mark Brown : On Sat, 3 Dec 2022 17:04:40 +0100 you wrote: > Rename name-prefix.yaml into common DAI schema and document > '#sound-dai-cells' for completeness. The '#sound-dai-cells' cannot be > really constrained, as

Re: [PATCH v3 07/12] drm/mediatek: hdmi: add v2 support

2022-12-25 Thread 胡俊光

Re: [PATCH 0/2] Recover from failure to probe GPU

2022-12-25 Thread Christian König
Am 24.12.22 um 10:34 schrieb Thomas Zimmermann: Hi Am 22.12.22 um 19:30 schrieb Mario Limonciello: One of the first thing that KMS drivers do during initialization is destroy the system firmware framebuffer by means of `drm_aperture_remove_conflicting_pci_framebuffers` This means that if for a

[PATCH v2] drm/amdgpu: Retry DDC probing on DVI on failure if we got an HPD interrupt

2022-12-25 Thread xurui
HPD signals on DVI ports can be fired off before the pins required for DDC probing actually make contact, due to the pins for HPD making contact first. This results in a HPD signal being asserted but DDC probing failing, resulting in hotplugging occasionally failing. Rescheduling the hotplug work

Re: [v2,3/4] drm/panel: Add driver for JDI LPM102A188A

2022-12-25 Thread Rayyan Ansari
Hello, On 25/10/2022 16:37, Diogo Ivo wrote: The JDI LPM102A188A is a 2560x1800 IPS panel found in the Google Pixel C. This driver is based on the downstream GPLv2 driver released by Google written by Sean Paul [1], which was then adapted to the newer kernel APIs. [1]: https://android.googleso

Patch - drivers/gpu/drm/solomon/ssd130x.c macros alignment

2022-12-25 Thread Luyao Han
From ab83bbcd24be1358543e76e54e4ccf585dda935a Mon Sep 17 00:00:00 2001 From: Luyao Han Date: Fri, 23 Dec 2022 10:51:14 -0500 Subject: [PATCH] Style: fixed macros alignment. Signed-off-by: Luyao Han --- drivers/gpu/drm/solomon/ssd130x.c | 52 +++ 1 file changed, 26 i

[PATCH 2/2] dt-bindings: display: msm: drop unneeded list for single compatible

2022-12-25 Thread Krzysztof Kozlowski
With only one compatible, there is no need to define it as list (items). Signed-off-by: Krzysztof Kozlowski --- .../devicetree/bindings/display/msm/qcom,msm8998-dpu.yaml | 3 +-- .../devicetree/bindings/display/msm/qcom,msm8998-mdss.yaml | 3 +-- .../devicetree/bindings/display/msm/qcom

[PATCH 1/2] dt-bindings: display: msm: drop redundant part of title

2022-12-25 Thread Krzysztof Kozlowski
The Devicetree bindings document does not have to say in the title that contains "DT properties", but instead just describe the hardware. Signed-off-by: Krzysztof Kozlowski --- .../devicetree/bindings/display/msm/dsi-phy-common.yaml| 7 +++ .../devicetree/bindings/display/msm/qcom,msm899

[PATCH] drm/nouveau/hwmon: Use sysfs_emit in show function callsbacks

2022-12-25 Thread Deepak R Varma
According to Documentation/filesystems/sysfs.rst, the show() callback function of kobject attributes should strictly use sysfs_emit() instead of sprintf() family functions. So, make this change. Issue identified using the coccinelle device_attr_show.cocci script. Signed-off-by: Deepak R Varma ---