i2c: pasemi: Use dev_name instead of port number
authorSven Peter <sven@svenpeter.dev>
Fri, 8 Oct 2021 16:35:24 +0000 (18:35 +0200)
committerWolfram Sang <wsa@kernel.org>
Mon, 11 Oct 2021 09:44:59 +0000 (11:44 +0200)
Right now the i2c adapter name includes the port number which can
indirectly be used to identify the device. Replace that with dev_name
to directly identify the device and to also allow this to work correctly
once we add platform support.

Signed-off-by: Sven Peter <sven@svenpeter.dev>
Acked-by: Olof Johansson <olof@lixom.net>
Tested-by: Christian Zigotzky <chzigotzky@xenosoft.de>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
drivers/i2c/busses/i2c-pasemi.c

index 39fcc58..ca5a86c 100644 (file)
@@ -360,7 +360,7 @@ static int pasemi_smb_probe(struct pci_dev *dev,
 
        smbus->adapter.owner = THIS_MODULE;
        snprintf(smbus->adapter.name, sizeof(smbus->adapter.name),
-                "PA Semi SMBus adapter at 0x%lx", smbus->base);
+                "PA Semi SMBus adapter (%s)", dev_name(smbus->dev));
        smbus->adapter.class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
        smbus->adapter.algo = &smbus_algorithm;
        smbus->adapter.algo_data = smbus;