aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2019-06-12 15:26:50 +0100
committerWolfram Sang <wsa@the-dreams.de>2019-06-14 23:24:34 +0200
commitc3c2889b8a2c9dfccca5aad647878ae0032dfc69 (patch)
tree3d52fa8c5eea5b7e23a8549410a62d93902d9050 /drivers/i2c
parenti2c: tegra: Add suspend-resume support (diff)
downloadlinux-dev-c3c2889b8a2c9dfccca5aad647878ae0032dfc69.tar.xz
linux-dev-c3c2889b8a2c9dfccca5aad647878ae0032dfc69.zip
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>
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/busses/i2c-qcom-geni.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-qcom-geni.c b/drivers/i2c/busses/i2c-qcom-geni.c
index db075bc0d952..eec13c72d644 100644
--- a/drivers/i2c/busses/i2c-qcom-geni.c
+++ b/drivers/i2c/busses/i2c-qcom-geni.c
@@ -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;
}