diff --git a/drivers/base/regmap/regcache.c b/drivers/base/regmap/regcache.c index f2469d3435ca38..02cc5627476208 100644 --- a/drivers/base/regmap/regcache.c +++ b/drivers/base/regmap/regcache.c @@ -315,7 +315,7 @@ static int regcache_default_sync(struct regmap *map, unsigned int min, ret = _regmap_write(map, reg, val); map->cache_bypass = false; if (ret) { - dev_err(map->dev, "Unable to sync register %#x. %d\n", + dev_dbg(map->dev, "Unable to sync register %#x. %d\n", reg, ret); return ret; } @@ -690,7 +690,7 @@ static int regcache_sync_block_single(struct regmap *map, void *block, map->cache_bypass = false; if (ret != 0) { - dev_err(map->dev, "Unable to sync register %#x. %d\n", + dev_dbg(map->dev, "Unable to sync register %#x. %d\n", regtmp, ret); return ret; } @@ -719,7 +719,7 @@ static int regcache_sync_block_raw_flush(struct regmap *map, const void **data, ret = _regmap_raw_write(map, base, *data, count * val_bytes, false); if (ret) - dev_err(map->dev, "Unable to sync registers %#x-%#x. %d\n", + dev_dbg(map->dev, "Unable to sync registers %#x-%#x. %d\n", base, cur - map->reg_stride, ret); map->cache_bypass = false; diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 26e731878bd0d2..8cf03324a275e8 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -1116,7 +1116,7 @@ static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state) pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr); if (PCI_POSSIBLE_ERROR(pmcsr)) { - pci_err(dev, "can't change power state from %s to %s (config space inaccessible)\n", + pci_dbg(dev, "can't change power state from %s to %s (config space inaccessible)\n", pci_power_name(dev->current_state), pci_power_name(state)); return -EIO; diff --git a/sound/pci/hda/hda_eld.c b/sound/pci/hda/hda_eld.c index 9e97443795f837..5150ed219c6c3d 100644 --- a/sound/pci/hda/hda_eld.c +++ b/sound/pci/hda/hda_eld.c @@ -310,7 +310,7 @@ int snd_hdmi_get_eld(struct hda_codec *codec, hda_nid_t nid, size = 128; } if (size < ELD_FIXED_BYTES || size > ELD_MAX_SIZE) { - codec_info(codec, "HDMI: invalid ELD buf size %d\n", size); + codec_dbg(codec, "HDMI: invalid ELD buf size %d\n", size); return -ERANGE; }