Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bf16e5b8 authored by Eric Long's avatar Eric Long Committed by Greg Kroah-Hartman
Browse files

coresight: "DEVICE_ATTR_RO" should defined as static.



"DEVICE_ATTR_RO(name)" should be defined as static. And
there is an unnecessary space at the front of the code.

The sparse tool output logs as the following:
coresight-etm4x.c:2224:1: warning: symbol 'dev_attr_trcoslsr' was
not declared. Should it be static?
coresight-etm4x.c:2225:1: warning: symbol 'dev_attr_trcpdcr' was
not declared. Should it be static?
coresight-etm4x.c:2226:1: warning: symbol 'dev_attr_trcpdsr' was
not declared. Should it be static?
And the smatch tool output logs as the following:
of_coresight.c:89 of_coresight_alloc_memory() warn:
inconsistent indenting

Signed-off-by: default avatarEric Long <eric.long@linaro.org>
Signed-off-by: default avatarMathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent adcde635
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2227,7 +2227,7 @@ static ssize_t name##_show(struct device *_dev, \
	return scnprintf(buf, PAGE_SIZE, "0x%x\n",			\
			 readl_relaxed(drvdata->base + offset));	\
}									\
DEVICE_ATTR_RO(name)
static DEVICE_ATTR_RO(name)

coresight_simple_func(trcoslsr, TRCOSLSR);
coresight_simple_func(trcpdcr, TRCPDCR);
+1 −1

File changed.

Contains only whitespace changes.