]> Git Repo - linux.git/commitdiff
platform/x86: i2c-multi-instantiate: Derive the device name from parent
authorHeikki Krogerus <[email protected]>
Fri, 20 Sep 2019 10:02:33 +0000 (13:02 +0300)
committerAndy Shevchenko <[email protected]>
Fri, 20 Sep 2019 14:57:07 +0000 (17:57 +0300)
When naming the new devices, instead of using the ACPI ID in
the name as base, using the parent device's name. That makes
it possible to support multiple multi-instance i2c devices
of the same type in the same system.

This fixes an issue seen on some Intel Kaby Lake based
boards:

sysfs: cannot create duplicate filename '/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-INT3515-tps6598x.0'

Fixes: 2336dfadfb1e ("platform/x86: i2c-multi-instantiate: Allow to have same slaves")
Cc: [email protected]
Signed-off-by: Heikki Krogerus <[email protected]>
Reviewed-by: Hans de Goede <[email protected]>
Signed-off-by: Andy Shevchenko <[email protected]>
drivers/platform/x86/i2c-multi-instantiate.c

index 61fe341a85aa1f8dcbbb2195c98a9537db16d4c5..ea68f6ed66ae396df2002a258493aa3eb31212e6 100644 (file)
@@ -90,7 +90,7 @@ static int i2c_multi_inst_probe(struct platform_device *pdev)
        for (i = 0; i < multi->num_clients && inst_data[i].type; i++) {
                memset(&board_info, 0, sizeof(board_info));
                strlcpy(board_info.type, inst_data[i].type, I2C_NAME_SIZE);
-               snprintf(name, sizeof(name), "%s-%s.%d", match->id,
+               snprintf(name, sizeof(name), "%s-%s.%d", dev_name(dev),
                         inst_data[i].type, i);
                board_info.dev_name = name;
                switch (inst_data[i].flags & IRQ_RESOURCE_TYPE) {
This page took 0.059738 seconds and 4 git commands to generate.