aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPankaj Dubey <pankaj.dubey@samsung.com>2014-11-13 14:12:47 +0530
committerMathieu Poirier <mathieu.poirier@linaro.org>2015-05-07 08:54:58 -0600
commitd02438f8a2567151684ac1ad33c9b94c2e55ea31 (patch)
treeaee15e91f5ae0909a4c5b45397d61533600ed9c2
parent912822468977962f8d510b170de61809ccb3d5e5 (diff)
coresight: fix typo in comment in coresight-priv.h
fixes a typo %s/eveyone/everyone/ in function CS_UNLOCK. Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> (cherry picked from commit 84b763d5b808ee6c23d95314ac81859cab471adb) Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
-rw-r--r--drivers/coresight/coresight-priv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/coresight/coresight-priv.h b/drivers/coresight/coresight-priv.h
index 8d1180c47c0b..7b3372fca4f6 100644
--- a/drivers/coresight/coresight-priv.h
+++ b/drivers/coresight/coresight-priv.h
@@ -47,7 +47,7 @@ static inline void CS_UNLOCK(void __iomem *addr)
{
do {
writel_relaxed(CORESIGHT_UNLOCK, addr + CORESIGHT_LAR);
- /* Make sure eveyone has seen this */
+ /* Make sure everyone has seen this */
mb();
} while (0);
}