Browse Source

i2c: print more info when acpi_i2c_space_handler() fails

Use a warning loglevel instead of info and switch to dev_* for device
info. Also print which client was accessed.

Signed-off-by: Wolfram Sang <wsa-dev@sang-engineering.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sang 9 years ago
parent
commit
be309c3cd3
1 changed files with 2 additions and 1 deletions
  1. 2 1
      drivers/i2c/i2c-core.c

+ 2 - 1
drivers/i2c/i2c-core.c

@@ -400,7 +400,8 @@ acpi_i2c_space_handler(u32 function, acpi_physical_address command,
 		break;
 		break;
 
 
 	default:
 	default:
-		pr_info("protocol(0x%02x) is not supported.\n", accessor_type);
+		dev_warn(&adapter->dev, "protocol 0x%02x not supported for client 0x%02x\n",
+			 accessor_type, client->addr);
 		ret = AE_BAD_PARAMETER;
 		ret = AE_BAD_PARAMETER;
 		goto err;
 		goto err;
 	}
 	}