Skip to content

Commit

Permalink
techpack/audio: elliptic: Demote verbosity to info
Browse files Browse the repository at this point in the history
  • Loading branch information
Ristovski committed Nov 18, 2023
1 parent 905ea6d commit 647fae6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions techpack/audio/dsp/elliptic/elliptic_mixer_controls.c
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ int elliptic_system_configuration_param_get(
struct soc_mixer_control *mc =
(struct soc_mixer_control *)kcontrol->private_value;

pr_err("%s: reg: %d shift: %d\n", __func__, mc->reg, mc->shift);
pr_info("%s: reg: %d shift: %d\n", __func__, mc->reg, mc->shift);

if (mc->reg != ELLIPTIC_SYSTEM_CONFIGURATION)
return -EINVAL;
Expand Down Expand Up @@ -814,7 +814,7 @@ int elliptic_system_configuration_param_put(
(struct soc_mixer_control *)kcontrol->private_value;
struct elliptic_system_configuration_parameter param;

pr_err("%s: reg: %d shift: %d val: %d\n", __func__, mc->reg, mc->shift,
pr_info("%s: reg: %d shift: %d val: %d\n", __func__, mc->reg, mc->shift,
ucontrol->value.integer.value[0]);

if (mc->reg != ELLIPTIC_SYSTEM_CONFIGURATION)
Expand Down

0 comments on commit 647fae6

Please sign in to comment.