Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1588200 > unrolled thread
| Started by | Codrut Grosu <codrut.cristian.grosu@gmail.com> |
|---|---|
| First post | 2017-02-25 20:10 +0100 |
| Last post | 2017-02-27 09:10 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] ASoC: tegra: Add blank line after declarations Codrut Grosu <codrut.cristian.grosu@gmail.com> - 2017-02-25 20:10 +0100
Re: [PATCH] ASoC: tegra: Add blank line after declarations Thierry Reding <thierry.reding@gmail.com> - 2017-02-27 09:10 +0100
| From | Codrut Grosu <codrut.cristian.grosu@gmail.com> |
|---|---|
| Date | 2017-02-25 20:10 +0100 |
| Subject | [PATCH] ASoC: tegra: Add blank line after declarations |
| Message-ID | <tePTc-3SH-23@gated-at.bofh.it> |
This was reported by checkpatch.pl
Signed-off-by: Codrut GROSU <codrut.cristian.grosu@gmail.com>
---
sound/soc/tegra/tegra20_das.c | 1 +
sound/soc/tegra/tegra30_ahub.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/sound/soc/tegra/tegra20_das.c b/sound/soc/tegra/tegra20_das.c
index 6d4a277..4024e3a 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 d7494c0..8c10ae7 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;
}
1.9.1
[toc] | [next] | [standalone]
| From | Thierry Reding <thierry.reding@gmail.com> |
|---|---|
| Date | 2017-02-27 09:10 +0100 |
| Message-ID | <tfoxA-2Ks-11@gated-at.bofh.it> |
| In reply to | #1588200 |
[Multipart message — attachments visible in raw view] — view raw
On Sat, Feb 25, 2017 at 08:59:17PM +0200, Codrut Grosu wrote: > This was reported by checkpatch.pl > > Signed-off-by: Codrut GROSU <codrut.cristian.grosu@gmail.com> > --- > sound/soc/tegra/tegra20_das.c | 1 + > sound/soc/tegra/tegra30_ahub.c | 1 + > 2 files changed, 2 insertions(+) Acked-by: Thierry Reding <treding@nvidia.com>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web