libpfm4: fix compile error

It fails to compile libpfm4 with misleading-indentation error:

| syst_count.c:346:3: error: this 'for' clause does not guard...  [-Werror=misleading-indentation]
|   for(c=cmin ; c < cmax; c++)
|      ^~~

Add clauses to fix it.

(From OE-Core rev: 2857658ff5e477cb436cf2778a78fa9f192caab8)

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Kai Kang 2016-06-29 16:08:45 +08:00 committed by Richard Purdie
parent 23ae622a69
commit e8e8d412e7
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,38 @@
Upstream-Status: Pending
Fix compile error:
| syst_count.c:346:3: error: this 'for' clause does not guard... [-Werror=misleading-indentation]
| for(c=cmin ; c < cmax; c++)
| ^~~
Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
diff --git a/perf_examples/syst_count.c b/perf_examples/syst_count.c
index 0d53078..2dfb9b9 100644
--- a/perf_examples/syst_count.c
+++ b/perf_examples/syst_count.c
@@ -343,8 +343,9 @@ measure(void)
for (delay = 1 ; delay <= options.delay; delay++) {
- for(c=cmin ; c < cmax; c++)
- start_cpu(c);
+ for(c=cmin ; c < cmax; c++) {
+ start_cpu(c);
+ }
if (0) {
tv.tv_sec = 0;
@@ -353,8 +354,9 @@ measure(void)
} else
sleep(1);
- for(c=cmin ; c < cmax; c++)
- stop_cpu(c);
+ for(c=cmin ; c < cmax; c++) {
+ stop_cpu(c);
+ }
for(c = cmin; c < cmax; c++) {
printf("# %'ds -----\n", delay);

View File

@ -14,6 +14,7 @@ COMPATIBLE_HOST = "powerpc64"
SRC_URI = "http://downloads.sourceforge.net/project/perfmon2/${BPN}/libpfm-${PV}.tar.gz \
file://0001-Makefile-Add-LDFLAGS-variable-to-SLDFLAGS.patch \
file://fix-misleading-indentation-error.patch \
"
SRC_URI[md5sum] = "5077b9022440e4951d96f2d0e73bd487"