Skip to content

Commit be35b0d

Browse files
committed
audio: kpb: Fix typo in function name
Just a cosmetic change. Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
1 parent a7e7df8 commit be35b0d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/audio/kpb.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -721,12 +721,12 @@ static int kpb_trigger(struct comp_dev *dev, int cmd)
721721
return comp_set_state(dev, cmd);
722722
}
723723

724-
static int kbp_verify_params(struct comp_dev *dev,
724+
static int kpb_verify_params(struct comp_dev *dev,
725725
struct sof_ipc_stream_params *params)
726726
{
727727
int ret;
728728

729-
comp_dbg(dev, "kbp_verify_params()");
729+
comp_dbg(dev, "kpb_verify_params()");
730730

731731
ret = comp_verify_params(dev, 0, params);
732732
if (ret < 0) {
@@ -756,7 +756,7 @@ static int kpb_params(struct comp_dev *dev,
756756

757757
kpb_set_params(dev, params);
758758

759-
err = kbp_verify_params(dev, params);
759+
err = kpb_verify_params(dev, params);
760760
if (err < 0) {
761761
comp_err(dev, "pcm params verification failed");
762762
return -EINVAL;

0 commit comments

Comments
 (0)