projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dcc4301
)
ASoC: fsl_micfil: drop only once used defines
author
Sascha Hauer
<s.hauer@pengutronix.de>
Thu, 14 Apr 2022 16:22:46 +0000
(18:22 +0200)
committer
Mark Brown
<broonie@kernel.org>
Tue, 19 Apr 2022 11:06:27 +0000
(12:06 +0100)
FSL_MICFIL_RATES and FSL_MICFIL_FORMATS is only used once. Drop
the unnecesary indirection and use SNDRV_PCM_RATE_8000_48000 and
SNDRV_PCM_FMTBIT_S16_LE directly.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Shengjiu Wang <shengjiu.wang@gmail.com>
Link:
https://lore.kernel.org/r/20220414162249.3934543-19-s.hauer@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/fsl/fsl_micfil.c
patch
|
blob
|
history
diff --git
a/sound/soc/fsl/fsl_micfil.c
b/sound/soc/fsl/fsl_micfil.c
index 821beca9b4bf18981d3023919c04293b485cda2d..89af6cfe24e69886c4cd645ee73ff040f06857a8 100644
(file)
--- a/
sound/soc/fsl/fsl_micfil.c
+++ b/
sound/soc/fsl/fsl_micfil.c
@@
-25,9
+25,6
@@
#include "fsl_micfil.h"
-#define FSL_MICFIL_RATES SNDRV_PCM_RATE_8000_48000
-#define FSL_MICFIL_FORMATS (SNDRV_PCM_FMTBIT_S16_LE)
-
#define MICFIL_OSR_DEFAULT 16
enum quality {
@@
-350,8
+347,8
@@
static struct snd_soc_dai_driver fsl_micfil_dai = {
.stream_name = "CPU-Capture",
.channels_min = 1,
.channels_max = 8,
- .rates =
FSL_MICFIL_RATES
,
- .formats =
FSL_MICFIL_FORMATS
,
+ .rates =
SNDRV_PCM_RATE_8000_48000
,
+ .formats =
SNDRV_PCM_FMTBIT_S16_LE
,
},
.ops = &fsl_micfil_dai_ops,
};