From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ard Biesheuvel Subject: Re: [PATCH v2 2/8] i2c: i2c-qcom-geni: Signify successful driver probe Date: Fri, 7 Jun 2019 13:08:55 +0200 Message-ID: References: <20190607082901.6491-1-lee.jones@linaro.org> <20190607082901.6491-2-lee.jones@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: In-Reply-To: <20190607082901.6491-2-lee.jones@linaro.org> Sender: linux-kernel-owner@vger.kernel.org To: Lee Jones Cc: alokc@codeaurora.org, Andy Gross , David Brown , wsa+renesas@sang-engineering.com, Bjorn Andersson , Linus Walleij , balbi@kernel.org, Greg Kroah-Hartman , linux-arm-msm , linux-usb , Linux Kernel Mailing List , "open list:GPIO SUBSYSTEM" , linux-i2c , Jeffrey Hugo , linux-arm-kernel List-Id: linux-i2c@vger.kernel.org On Fri, 7 Jun 2019 at 10:29, Lee Jones wrote: > > The Qualcomm Geni I2C driver currently probes silently which can be > confusing when debugging potential issues. Add a low level (INFO) > print when each I2C controller is successfully initially set-up. > > Signed-off-by: Lee Jones > --- > drivers/i2c/busses/i2c-qcom-geni.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/i2c/busses/i2c-qcom-geni.c b/drivers/i2c/busses/i2c-qcom-geni.c > index 0fa93b448e8d..720131c40fe0 100644 > --- a/drivers/i2c/busses/i2c-qcom-geni.c > +++ b/drivers/i2c/busses/i2c-qcom-geni.c > @@ -598,6 +598,8 @@ static int geni_i2c_probe(struct platform_device *pdev) > return ret; > } > > + dev_dbg(&pdev->dev, "Geni-I2C adaptor successfully added\n"); > + > return 0; > } > Acked-by: Ard Biesheuvel