[PATCH v2 2/2] drm/bridge: anx7625: add MIPI DPI input feature support

2020-12-30 Thread Xin Ji
Add MIPI rx DPI input support Signed-off-by: Xin Ji Reported-by: kernel test robot --- drivers/gpu/drm/bridge/analogix/anx7625.c | 344 -- drivers/gpu/drm/bridge/analogix/anx7625.h | 24 ++- 2 files changed, 348 insertions(+), 20 deletions(-) diff --git a/drivers/g

[PATCH v2 0/2] Add MIPI rx DPI support

2020-12-30 Thread Xin Ji
Hi all, this patch series implement MIPI rx DPI feature. Please help to review. This is the v2 version, any mistakes, please let me know, I'll fix it in the next series. Change history: v2: Fix Rob Herring comment - Fix yamllint warnings/errors in analogix,anx7625.yaml - Fix kernel robot compil

WINNING NOTIFICATION.

2020-12-30 Thread MRS. VERUMLEM KLEITH
Google Incorporation®. Belgrave House, 76 Buckingham Palace Road, London SW1W 9TQ, United Kingdom. Attention: Lucky Winner. GOOGLE WINNING NOTIFICATION. We wish to congratulate you for being part of our lucky winners selected for the Google 2020 end of the year Promotion. This promotion was set

Re: [PATCH v2 23/48] soc/tegra: pmc: Pulse resets after removing power clamp

2020-12-30 Thread Dmitry Osipenko
17.12.2020 21:06, Dmitry Osipenko пишет: > The GR3D1 hardware unit needs to pulse hardware reset after removing power > clamp, otherwise reset won't be deasserted. Hence give reset a pulse after > removing the clamp. This stayed unnoticed previously because power > management wasn't supported by th

Re: [PATCH v2 11/48] opp: Add dev_pm_opp_find_level_ceil()

2020-12-30 Thread Dmitry Osipenko
30.12.2020 07:46, Viresh Kumar пишет: > On 28-12-20, 17:03, Dmitry Osipenko wrote: >> 28.12.2020 09:22, Viresh Kumar пишет: >>> On 24-12-20, 16:00, Dmitry Osipenko wrote: In a device driver I want to set PD to the lowest performance state by removing the performance vote when dev_pm_opp_s

Re: [PATCH v2 -next] staging: greybus: light: Use kzalloc for allocating only one thing

2020-12-30 Thread Rui Miguel Silva
Hi Yongjun, many thanks for your patch. On Wed, Dec 30, 2020 at 09:37:06AM +0800, Zheng Yongjun wrote: > Use kzalloc rather than kcalloc(1,...) > > The semantic patch that makes this change is as follows: > (http://coccinelle.lip6.fr/) > > // > @@ > @@ > > - kcalloc(1, > + kzalloc( >