From: Pankaj Dubey Date: Thu, 13 Nov 2014 08:42:47 +0000 (+0530) Subject: coresight: fix typo in comment in coresight-priv.h X-Git-Tag: firefly_0821_release~3680^2~19^2~3^2~2^2~1 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ade3812385c91985cee85151722d8de9644f3b98;p=firefly-linux-kernel-4.4.55.git coresight: fix typo in comment in coresight-priv.h fixes a typo %s/eveyone/everyone/ in function CS_UNLOCK. Signed-off-by: Pankaj Dubey Signed-off-by: Greg Kroah-Hartman (cherry picked from commit 84b763d5b808ee6c23d95314ac81859cab471adb) Signed-off-by: Mathieu Poirier --- 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); }