Message ID | 20190808032552.45360-1-yuehaibing@huawei.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 8e082d8f42fabf9a4a0708d8012f4995765478fc |
Headers | show |
Series | [-next] ASoC: tscs454: remove unused variable 'PLL_48K_RATE' | expand |
diff --git a/sound/soc/codecs/tscs454.c b/sound/soc/codecs/tscs454.c index 93d84e5..c3587af 100644 --- a/sound/soc/codecs/tscs454.c +++ b/sound/soc/codecs/tscs454.c @@ -22,7 +22,6 @@ #include "tscs454.h" -static const unsigned int PLL_48K_RATE = (48000 * 256); static const unsigned int PLL_44_1K_RATE = (44100 * 256); #define COEFF_SIZE 3
The global variable 'PLL_48K_RATE' is never used so just remove it. Signed-off-by: YueHaibing <yuehaibing@huawei.com> --- sound/soc/codecs/tscs454.c | 1 - 1 file changed, 1 deletion(-)