From: kbuild test robot <lkp@intel.com>
To: Jacopo Mondi <jacopo+renesas@jmondi.org>
Cc: kbuild-all@01.org, niklas.soderlund@ragnatech.se,
laurent.pinchart@ideasonboard.com,
Jacopo Mondi <jacopo+renesas@jmondi.org>,
mchehab@kernel.org, linux-media@vger.kernel.org,
linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH v5 06/10] media: rcar-vin: Parse parallel input on Gen3
Date: Thu, 31 May 2018 22:13:04 +0800 [thread overview]
Message-ID: <201805312058.sY1TEr06%fengguang.wu@intel.com> (raw)
In-Reply-To: <1527583688-314-7-git-send-email-jacopo+renesas@jmondi.org>
[-- Attachment #1: Type: text/plain, Size: 4678 bytes --]
Hi Jacopo,
I love your patch! Yet something to improve:
[auto build test ERROR on linuxtv-media/master]
[also build test ERROR on next-20180530]
[cannot apply to v4.17-rc7]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
url: https://github.com/0day-ci/linux/commits/Jacopo-Mondi/rcar-vin-Add-support-for-parallel-input-on-Gen3/20180531-182328
base: git://linuxtv.org/media_tree.git master
config: x86_64-allmodconfig (attached as .config)
compiler: gcc-7 (Debian 7.3.0-16) 7.3.0
reproduce:
# save the attached .config to linux build tree
make ARCH=x86_64
All errors (new ones prefixed by >>):
drivers/media//platform/rcar-vin/rcar-core.c: In function 'rcar_vin_probe':
drivers/media//platform/rcar-vin/rcar-core.c:1122:1: warning: label 'error_dma_unreg' defined but not used [-Wunused-label]
error_dma_unreg:
^~~~~~~~~~~~~~~
drivers/media//platform/rcar-vin/rcar-core.c:1111:1: warning: label 'error_group_unreg' defined but not used [-Wunused-label]
error_group_unreg:
^~~~~~~~~~~~~~~~~
>> drivers/media//platform/rcar-vin/rcar-core.c:1104:3: error: label 'error_group_unregister' used but not defined
goto error_group_unregister;
^~~~
>> drivers/media//platform/rcar-vin/rcar-core.c:1099:4: error: label 'error_dma_unregister' used but not defined
goto error_dma_unregister;
^~~~
sparse warnings: (new ones prefixed by >>)
>> drivers/media/platform/rcar-vin/rcar-core.c:1099:25: sparse: label 'error_dma_unregister' was not declared
>> drivers/media/platform/rcar-vin/rcar-core.c:1104:17: sparse: label 'error_group_unregister' was not declared
drivers/media/platform/rcar-vin/rcar-core.c: In function 'rcar_vin_probe':
drivers/media/platform/rcar-vin/rcar-core.c:1122:1: warning: label 'error_dma_unreg' defined but not used [-Wunused-label]
error_dma_unreg:
^~~~~~~~~~~~~~~
drivers/media/platform/rcar-vin/rcar-core.c:1111:1: warning: label 'error_group_unreg' defined but not used [-Wunused-label]
error_group_unreg:
^~~~~~~~~~~~~~~~~
drivers/media/platform/rcar-vin/rcar-core.c:1104:3: error: label 'error_group_unregister' used but not defined
goto error_group_unregister;
^~~~
drivers/media/platform/rcar-vin/rcar-core.c:1099:4: error: label 'error_dma_unregister' used but not defined
goto error_dma_unregister;
^~~~
vim +/error_group_unregister +1104 drivers/media//platform/rcar-vin/rcar-core.c
1055
1056 static int rcar_vin_probe(struct platform_device *pdev)
1057 {
1058 const struct soc_device_attribute *attr;
1059 struct rvin_dev *vin;
1060 struct resource *mem;
1061 int irq, ret;
1062
1063 vin = devm_kzalloc(&pdev->dev, sizeof(*vin), GFP_KERNEL);
1064 if (!vin)
1065 return -ENOMEM;
1066
1067 vin->dev = &pdev->dev;
1068 vin->info = of_device_get_match_data(&pdev->dev);
1069
1070 /*
1071 * Special care is needed on r8a7795 ES1.x since it
1072 * uses different routing than r8a7795 ES2.0.
1073 */
1074 attr = soc_device_match(r8a7795es1);
1075 if (attr)
1076 vin->info = attr->data;
1077
1078 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1079 if (mem == NULL)
1080 return -EINVAL;
1081
1082 vin->base = devm_ioremap_resource(vin->dev, mem);
1083 if (IS_ERR(vin->base))
1084 return PTR_ERR(vin->base);
1085
1086 irq = platform_get_irq(pdev, 0);
1087 if (irq < 0)
1088 return irq;
1089
1090 ret = rvin_dma_register(vin, irq);
1091 if (ret)
1092 return ret;
1093
1094 platform_set_drvdata(pdev, vin);
1095
1096 if (vin->info->use_mc) {
1097 ret = rvin_mc_init(vin);
1098 if (ret)
> 1099 goto error_dma_unregister;
1100 }
1101
1102 ret = rvin_parallel_init(vin);
1103 if (ret)
> 1104 goto error_group_unregister;
1105
1106 pm_suspend_ignore_children(&pdev->dev, true);
1107 pm_runtime_enable(&pdev->dev);
1108
1109 return 0;
1110
1111 error_group_unreg:
1112 if (vin->info->use_mc) {
1113 mutex_lock(&vin->group->lock);
1114 if (&vin->v4l2_dev == vin->group->notifier.v4l2_dev) {
1115 v4l2_async_notifier_unregister(&vin->group->notifier);
1116 v4l2_async_notifier_cleanup(&vin->group->notifier);
1117 }
1118 mutex_unlock(&vin->group->lock);
1119 rvin_group_put(vin);
1120 }
1121
> 1122 error_dma_unreg:
1123 rvin_dma_unregister(vin);
1124
1125 return ret;
1126 }
1127
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 63754 bytes --]
next prev parent reply other threads:[~2018-05-31 14:13 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-29 8:47 [PATCH v5 0/10] rcar-vin: Add support for parallel input on Gen3 Jacopo Mondi
2018-05-29 8:47 ` [PATCH v5 01/10] media: rcar-vin: Rename 'digital' to 'parallel' Jacopo Mondi
2018-05-29 8:48 ` [PATCH v5 02/10] media: rcar-vin: Remove two empty lines Jacopo Mondi
2018-05-29 8:48 ` [PATCH v5 03/10] media: rcar-vin: Create a group notifier Jacopo Mondi
2018-06-04 12:40 ` Niklas Söderlund
2018-05-29 8:48 ` [PATCH v5 04/10] media: rcar-vin: Cleanup notifier in error path Jacopo Mondi
2018-05-29 9:02 ` Kieran Bingham
2018-06-04 12:43 ` Niklas Söderlund
2018-05-29 8:48 ` [PATCH v5 05/10] media: rcar-vin: Cache the mbus configuration flags Jacopo Mondi
2018-06-04 12:46 ` Niklas Söderlund
2018-05-29 8:48 ` [PATCH v5 06/10] media: rcar-vin: Parse parallel input on Gen3 Jacopo Mondi
2018-05-29 12:39 ` jacopo mondi
2018-05-31 14:13 ` kbuild test robot [this message]
2018-06-04 12:52 ` Niklas Söderlund
2018-05-29 8:48 ` [PATCH v5 07/10] media: rcar-vin: Link parallel input media entities Jacopo Mondi
2018-05-29 8:48 ` [PATCH v5 08/10] media: rcar-vin: Handle parallel subdev in link_notify Jacopo Mondi
2018-05-29 8:48 ` [PATCH v5 09/10] media: rcar-vin: Rename _rcar_info to rcar_info Jacopo Mondi
2018-05-29 8:48 ` [PATCH v5 10/10] media: rcar-vin: Add support for R-Car R8A77995 SoC Jacopo Mondi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201805312058.sY1TEr06%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=jacopo+renesas@jmondi.org \
--cc=kbuild-all@01.org \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-media@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=niklas.soderlund@ragnatech.se \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox