Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions drivers/misc/amd-apml/apml_sbtsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,10 +488,10 @@ static int sbtsi_i3c_probe(struct i3c_device *i3cdev)
struct regmap *regmap;
const char *hwmon_dev_name;

dev_err(dev, "SBTSI: PID: %llx\n", i3cdev->desc->info.pid);
dev_info(dev, "SBTSI: PID: %llx\n", i3cdev->desc->info.pid);
if (!(I3C_PID_INSTANCE_ID(i3cdev->desc->info.pid) == 0 ||
i3cdev->desc->info.pid == 0x22400000001)) {
dev_err(dev, "SBTSI: Error PID: %llx\n", i3cdev->desc->info.pid);
dev_info(dev, "SBTSI: Error PID: %llx\n", i3cdev->desc->info.pid);
return -ENXIO;
}

Expand All @@ -518,7 +518,7 @@ static int sbtsi_i3c_probe(struct i3c_device *i3cdev)
map_sbtsi_pid_to_static_addr(i3cdev, tsi_dev);
if (tsi_dev->dev_static_addr == 0)
{
dev_err(dev, "SBTSI: PID = 0x%llx, static address zero, skip the device\n",
dev_info(dev, "SBTSI: PID = 0x%llx, static address zero, skip the device\n",
i3cdev->desc->info.pid);
return -ENXIO;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/amd-apml/sbrmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ static int sbrmi_i3c_probe(struct i3c_device *i3cdev)
map_sbrmi_pid_to_static_addr(i3cdev, rmi_dev);
if (rmi_dev->dev_static_addr == 0)
{
dev_err(dev, "SBRMI: PID = 0x%llx, static address zero, skip the device\n",
dev_info(dev, "SBRMI: PID = 0x%llx, static address zero, skip the device\n",
i3cdev->desc->info.pid);
}

Expand Down