diff options
author | Charles Keepax <ckeepax@opensource.cirrus.com> | 2024-01-25 10:31:15 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-01-26 14:46:58 +0000 |
commit | 96c716887c1a918d4cb4610f5cf111280fda48f0 (patch) | |
tree | 9b688eb6d6df8fcbbadeaeaa54355b9787129907 /sound | |
parent | 7a93a9abe44386b4caa0e67977f41b8c9f06b51c (diff) | |
download | linux-stable-96c716887c1a918d4cb4610f5cf111280fda48f0.tar.gz linux-stable-96c716887c1a918d4cb4610f5cf111280fda48f0.tar.bz2 linux-stable-96c716887c1a918d4cb4610f5cf111280fda48f0.zip |
ASoC: cs42l43: Use USEC_PER_MSEC rather than hard coding
Use USEC_PER_MSEC rather than the hard coded value of 1000.
Suggested-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://msgid.link/r/20240125103117.2622095-5-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/cs42l43-jack.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/codecs/cs42l43-jack.c b/sound/soc/codecs/cs42l43-jack.c index 67ccdc8bab6f..901b9dbcf585 100644 --- a/sound/soc/codecs/cs42l43-jack.c +++ b/sound/soc/codecs/cs42l43-jack.c @@ -17,6 +17,7 @@ #include <linux/pm_runtime.h> #include <linux/property.h> #include <linux/regmap.h> +#include <linux/time.h> #include <linux/workqueue.h> #include <sound/control.h> #include <sound/jack.h> @@ -647,7 +648,7 @@ static int cs42l43_run_load_detect(struct cs42l43_codec *priv, bool mic) static int cs42l43_run_type_detect(struct cs42l43_codec *priv) { struct cs42l43 *cs42l43 = priv->core; - int timeout_ms = ((2 * priv->detect_us) / 1000) + 200; + int timeout_ms = ((2 * priv->detect_us) / USEC_PER_MSEC) + 200; unsigned int type = 0xff; unsigned long time_left; |