Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1312930
| From | Eric Long <eric.long@linaro.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [RESEND PATCH 2/2] coresight: Remove the mistakes detected by smatch tool |
| Date | 2016-01-20 07:50 +0100 |
| Message-ID | <qSUKC-2IV-13@gated-at.bofh.it> (permalink) |
| References | <qSUKB-2IV-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
There is an unnecessary space at the front of the code. The smatch tool output logs as the following: of_coresight.c:89 of_coresight_alloc_memory() warn: inconsistent indenting Signed-off-by: Eric Long <eric.long@linaro.org> --- drivers/hwtracing/coresight/of_coresight.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hwtracing/coresight/of_coresight.c b/drivers/hwtracing/coresight/of_coresight.c index b097361..3cc57c1 100644 --- a/drivers/hwtracing/coresight/of_coresight.c +++ b/drivers/hwtracing/coresight/of_coresight.c @@ -86,7 +86,7 @@ static int of_coresight_alloc_memory(struct device *dev, return -ENOMEM; /* Children connected to this component via @outports */ - pdata->child_names = devm_kzalloc(dev, pdata->nr_outport * + pdata->child_names = devm_kzalloc(dev, pdata->nr_outport * sizeof(*pdata->child_names), GFP_KERNEL); if (!pdata->child_names) -- 1.7.9.5
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[RESEND PATCH 0/2] Remove the mistakes detected by the check tools. Eric Long <eric.long@linaro.org> - 2016-01-20 07:50 +0100
[RESEND PATCH 2/2] coresight: Remove the mistakes detected by smatch tool Eric Long <eric.long@linaro.org> - 2016-01-20 07:50 +0100
Re: [RESEND PATCH 0/2] Remove the mistakes detected by the check tools. Mathieu Poirier <mathieu.poirier@linaro.org> - 2016-01-21 18:00 +0100
Re: [RESEND PATCH 0/2] Remove the mistakes detected by the check tools. Eric Long <eric.long@linaro.org> - 2016-01-22 10:20 +0100
Re: [RESEND PATCH 0/2] Remove the mistakes detected by the check tools. Mathieu Poirier <mathieu.poirier@linaro.org> - 2016-01-22 18:30 +0100
csiph-web