diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2022-07-19 06:06:10 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@kernel.org> | 2022-07-22 18:50:48 +0200 |
commit | ac720e3e0e072092667b6d62a25611c2427fdb13 (patch) | |
tree | 3045c2d49ed98dd2e15c89346c20e6e1c58f2d4b /drivers/i2c | |
parent | i2c: Add Renesas RZ/V2M controller (diff) | |
download | linux-ac720e3e0e072092667b6d62a25611c2427fdb13.tar.xz linux-ac720e3e0e072092667b6d62a25611c2427fdb13.zip |
i2c: brcmstb: Use dev_name() for adapter name
This make it easier to disambiguate the different i2c controllers
present in a system, and then correlating with /proc/interrupts allows
to know which instance is interrupt driven and which one is not.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-brcmstb.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-brcmstb.c b/drivers/i2c/busses/i2c-brcmstb.c index b00f35c0b066..3ba6cbbe84ac 100644 --- a/drivers/i2c/busses/i2c-brcmstb.c +++ b/drivers/i2c/busses/i2c-brcmstb.c @@ -684,9 +684,7 @@ static int brcmstb_i2c_probe(struct platform_device *pdev) adap = &dev->adapter; i2c_set_adapdata(adap, dev); adap->owner = THIS_MODULE; - strlcpy(adap->name, "Broadcom STB : ", sizeof(adap->name)); - if (int_name) - strlcat(adap->name, int_name, sizeof(adap->name)); + strlcpy(adap->name, dev_name(&pdev->dev), sizeof(adap->name)); adap->algo = &brcmstb_i2c_algo; adap->dev.parent = &pdev->dev; adap->dev.of_node = pdev->dev.of_node; |