From: Krzysztof Kozlowski Date: Mon, 17 Aug 2020 07:00:03 +0000 (+0200) Subject: extcon: ptn5150: Lower the noisiness of probe X-Git-Tag: v5.15~2672^2~35^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa31f5871759bd635a81cce02991cb0ddf334ef5;p=platform%2Fkernel%2Flinux-starfive.git extcon: ptn5150: Lower the noisiness of probe The ptn5150 driver always prints device type on probe but as raw hex, without any translation to meaningful description. This is useful only for board bring up time so lower the verbosity to debug. Signed-off-by: Krzysztof Kozlowski Reviewed-by: Vijai Kumar K Signed-off-by: Chanwoo Choi --- diff --git a/drivers/extcon/extcon-ptn5150.c b/drivers/extcon/extcon-ptn5150.c index 3b99ad4..a57fef3 100644 --- a/drivers/extcon/extcon-ptn5150.c +++ b/drivers/extcon/extcon-ptn5150.c @@ -199,8 +199,8 @@ static int ptn5150_init_dev_type(struct ptn5150_info *info) version_id = ((reg_data & PTN5150_REG_DEVICE_ID_VERSION_MASK) >> PTN5150_REG_DEVICE_ID_VERSION_SHIFT); - dev_info(info->dev, "Device type: version: 0x%x, vendor: 0x%x\n", - version_id, vendor_id); + dev_dbg(info->dev, "Device type: version: 0x%x, vendor: 0x%x\n", + version_id, vendor_id); /* Clear any existing interrupts */ ret = regmap_read(info->regmap, PTN5150_REG_INT_STATUS, ®_data);