[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <d466e1163c73b144a0501b61f6221de8e9a67a48.camel@perches.com>
Date: Fri, 21 Aug 2020 13:17:32 -0700
From: Joe Perches <joe@...ches.com>
To: Mauro Carvalho Chehab <mchehab+huawei@...nel.org>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: linuxarm@...wei.com, mauro.chehab@...wei.com,
Xiubin Zhang <zhangxiubin1@...wei.com>,
John Stultz <john.stultz@...aro.org>,
Manivannan Sadhasivam <mani@...nel.org>,
Daniel Vetter <daniel@...ll.ch>,
dri-devel <dri-devel@...ts.freedesktop.org>,
Andrzej Hajda <a.hajda@...sung.com>,
Laurent Pinchart <laurent.pinchart@...asonboard.com>,
Neil Armstrong <narmstrong@...libre.com>,
Bogdan Togorean <bogdan.togorean@...log.com>,
Rob Clark <robdclark@...omium.org>,
Laurentiu Palcu <laurentiu.palcu@....com>,
Liwei Cai <cailiwei@...ilicon.com>,
Chen Feng <puck.chen@...ilicon.com>,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 10/49] staging: hikey9xx/gpu: add debug prints for this
driver
On Wed, 2020-08-19 at 13:45 +0200, Mauro Carvalho Chehab wrote:
> From: Xiubin Zhang <zhangxiubin1@...wei.com>
>
> Add some debug prints on adv7535 and kirin_drm_drv.
bikeshed:
> diff --git a/drivers/staging/hikey9xx/gpu/hdmi/adv7535.c b/drivers/staging/hikey9xx/gpu/hdmi/adv7535.c
[]
> @@ -785,19 +786,25 @@ adv7511_detect(struct adv7511 *adv7511,
> {
> enum drm_connector_status status;
> unsigned int val;
> + unsigned int time = 0;
time is not a good name. Maybe rename to loops
> @@ -820,7 +827,32 @@ adv7511_detect(struct adv7511 *adv7511,
> }
> #endif
>
> + if (status == connector_status_disconnected) {
> + do {
> + ret = regmap_read(adv7511->regmap, ADV7511_REG_STATUS, &val);
> + if (ret < 0) {
> + DRM_ERROR("regmap_read fail, ret = %d \n", ret);
> + return connector_status_disconnected;
> + }
> +
> + if (val & ADV7511_STATUS_HPD) {
> + DRM_INFO("connected : regmap_read val = 0x%x \n", val);
> + status = connector_status_connected;
> + } else {
> + DRM_INFO("disconnected : regmap_read val = 0x%x \n", val);
> + status = connector_status_disconnected;
> + }
> + time ++;
> + mdelay(20);
> + } while (status == connector_status_disconnected && time < 10);
> + }
> +
> + if (time >= 10)
> + DRM_ERROR("Read connector status timout, time = %d \n", time);
No space necessary before ++
s/timout/timeout/
No space before the newline please in any of the DRM_ERROR
output messages.
Powered by blists - more mailing lists