diff options
author | Lucas Stach <l.stach@pengutronix.de> | 2019-07-17 12:51:56 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-07-22 13:26:14 +0100 |
commit | 6d19d8a3cec74a9680947ecb6abdeda38583110e (patch) | |
tree | 3197f9858f0574f16a4d96d6e27c9fd61f6d6e94 /sound/soc/fsl | |
parent | bd517707d85f19a7339ea8b882fcbf0fd9976bd6 (diff) | |
download | linux-6d19d8a3cec74a9680947ecb6abdeda38583110e.tar.gz linux-6d19d8a3cec74a9680947ecb6abdeda38583110e.tar.bz2 linux-6d19d8a3cec74a9680947ecb6abdeda38583110e.zip |
ASoC: fsl_sai: mark regmap as fast_io
The regmap is only ever used to access MMIO registers, so it's fair
to say that register access is fast.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Link: https://lore.kernel.org/r/20190717105156.15721-1-l.stach@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl')
-rw-r--r-- | sound/soc/fsl/fsl_sai.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c index 1d1a447163e3..6d3c6c8d50ce 100644 --- a/sound/soc/fsl/fsl_sai.c +++ b/sound/soc/fsl/fsl_sai.c @@ -763,6 +763,7 @@ static const struct regmap_config fsl_sai_regmap_config = { .reg_bits = 32, .reg_stride = 4, .val_bits = 32, + .fast_io = true, .max_register = FSL_SAI_RMR, .reg_defaults = fsl_sai_reg_defaults, |