Message ID | 1512666160-30729-1-git-send-email-naveen.m@intel.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 4362934a75ff2a399fd0bcd75937907115770020 |
Headers | show |
On Thu, Dec 07, 2017 at 10:32:40PM +0530, Naveen Manohar wrote: > patch suppresses the warning message "control load not supported" > as this is a debug information to help debug issues in topology. Just a note the some users have been complaining about this and this makes the noise go away. Acked-By: Vinod Koul <vinod.koul@intel.com> > Signed-off-by: Naveen Manohar <naveen.m@intel.com> > > diff --git a/sound/soc/intel/skylake/skl-topology.c b/sound/soc/intel/skylake/skl-topology.c > index a072bcf..81923da 100644 > --- a/sound/soc/intel/skylake/skl-topology.c > +++ b/sound/soc/intel/skylake/skl-topology.c > @@ -2908,7 +2908,7 @@ static int skl_tplg_control_load(struct snd_soc_component *cmpnt, > break; > > default: > - dev_warn(bus->dev, "Control load not supported %d:%d:%d\n", > + dev_dbg(bus->dev, "Control load not supported %d:%d:%d\n", > hdr->ops.get, hdr->ops.put, hdr->ops.info); > break; > } > -- > 1.9.1 >
diff --git a/sound/soc/intel/skylake/skl-topology.c b/sound/soc/intel/skylake/skl-topology.c index a072bcf..81923da 100644 --- a/sound/soc/intel/skylake/skl-topology.c +++ b/sound/soc/intel/skylake/skl-topology.c @@ -2908,7 +2908,7 @@ static int skl_tplg_control_load(struct snd_soc_component *cmpnt, break; default: - dev_warn(bus->dev, "Control load not supported %d:%d:%d\n", + dev_dbg(bus->dev, "Control load not supported %d:%d:%d\n", hdr->ops.get, hdr->ops.put, hdr->ops.info); break; }
patch suppresses the warning message "control load not supported" as this is a debug information to help debug issues in topology. Signed-off-by: Naveen Manohar <naveen.m@intel.com>