i2c: qcom-geni: Signify successful driver probe

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 <lee.jones@linaro.org>
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Acked-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
Lee Jones 2019-06-12 15:26:50 +01:00 committed by Wolfram Sang
parent acc8abcb2a
commit c3c2889b8a
1 changed files with 2 additions and 0 deletions

View File

@ -584,6 +584,8 @@ static int geni_i2c_probe(struct platform_device *pdev)
return ret;
}
dev_dbg(&pdev->dev, "Geni-I2C adaptor successfully added\n");
return 0;
}