aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorLad, Prabhakar <prabhakar.csengg@gmail.com>2014-03-29 00:56:13 -0400
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-07-21 23:56:14 -0400
commit3b12c89d0d21cec5853d641d8c5afd875bcecc83 (patch)
tree90d506dea6ee376dad5af50d6ffab11bde958c85 /drivers/staging
parent80b44ef23a746af5a05562d314184b5923574bb6 (diff)
[media] staging: media: davinci_vpfe: fix checkpatch warning
This patch fixes following checkpatch warning, media/davinci_vpfe/dm365_ipipe.c:1271: WARNING: Missing a blank line after declarations media/davinci_vpfe/dm365_ipipe.c:1313: WARNING: Missing a blank line after declarations Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/media/davinci_vpfe/dm365_ipipe.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/media/davinci_vpfe/dm365_ipipe.c b/drivers/staging/media/davinci_vpfe/dm365_ipipe.c
index b7044a380fe3..bdc7f005b3ba 100644
--- a/drivers/staging/media/davinci_vpfe/dm365_ipipe.c
+++ b/drivers/staging/media/davinci_vpfe/dm365_ipipe.c
@@ -1268,6 +1268,7 @@ static int ipipe_s_config(struct v4l2_subdev *sd, struct vpfe_ipipe_config *cfg)
1268 1268
1269 for (i = 0; i < ARRAY_SIZE(ipipe_modules); i++) { 1269 for (i = 0; i < ARRAY_SIZE(ipipe_modules); i++) {
1270 unsigned int bit = 1 << i; 1270 unsigned int bit = 1 << i;
1271
1271 if (cfg->flag & bit) { 1272 if (cfg->flag & bit) {
1272 const struct ipipe_module_if *module_if = 1273 const struct ipipe_module_if *module_if =
1273 &ipipe_modules[i]; 1274 &ipipe_modules[i];
@@ -1310,6 +1311,7 @@ static int ipipe_g_config(struct v4l2_subdev *sd, struct vpfe_ipipe_config *cfg)
1310 1311
1311 for (i = 1; i < ARRAY_SIZE(ipipe_modules); i++) { 1312 for (i = 1; i < ARRAY_SIZE(ipipe_modules); i++) {
1312 unsigned int bit = 1 << i; 1313 unsigned int bit = 1 << i;
1314
1313 if (cfg->flag & bit) { 1315 if (cfg->flag & bit) {
1314 const struct ipipe_module_if *module_if = 1316 const struct ipipe_module_if *module_if =
1315 &ipipe_modules[i]; 1317 &ipipe_modules[i];