diff options
author | Codrut Grosu <codrut.cristian.grosu@gmail.com> | 2017-02-25 20:59:17 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-03-07 14:29:51 +0100 |
commit | bf3c6ef7f5b1e43739ad0356a5afee5127c86465 (patch) | |
tree | 1977e8f3af917dcbb8e3ee205b8d7365555b5d99 /sound | |
parent | e2c187a689b4a717024ba90c67a6ecd8ff36a23e (diff) | |
download | linux-bf3c6ef7f5b1e43739ad0356a5afee5127c86465.tar.gz linux-bf3c6ef7f5b1e43739ad0356a5afee5127c86465.tar.bz2 linux-bf3c6ef7f5b1e43739ad0356a5afee5127c86465.zip |
ASoC: tegra: Add blank line after declarations
This was reported by checkpatch.pl
Signed-off-by: Codrut GROSU <codrut.cristian.grosu@gmail.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/tegra/tegra20_das.c | 1 | ||||
-rw-r--r-- | sound/soc/tegra/tegra30_ahub.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/tegra/tegra20_das.c b/sound/soc/tegra/tegra20_das.c index 6d4a2774135e..4024e3abbeed 100644 --- a/sound/soc/tegra/tegra20_das.c +++ b/sound/soc/tegra/tegra20_das.c @@ -41,6 +41,7 @@ static inline void tegra20_das_write(u32 reg, u32 val) static inline u32 tegra20_das_read(u32 reg) { u32 val; + regmap_read(das->regmap, reg, &val); return val; } diff --git a/sound/soc/tegra/tegra30_ahub.c b/sound/soc/tegra/tegra30_ahub.c index d7494c0e9053..8c10ae7982ba 100644 --- a/sound/soc/tegra/tegra30_ahub.c +++ b/sound/soc/tegra/tegra30_ahub.c @@ -41,6 +41,7 @@ static inline void tegra30_apbif_write(u32 reg, u32 val) static inline u32 tegra30_apbif_read(u32 reg) { u32 val; + regmap_read(ahub->regmap_apbif, reg, &val); return val; } |