diff options
author | Pankaj Dubey <pankaj.dubey@samsung.com> | 2014-11-13 14:12:47 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-26 19:28:11 -0800 |
commit | 84b763d5b808ee6c23d95314ac81859cab471adb (patch) | |
tree | 0c55266a4143cb779577d7b0d129c6b5a97286e7 /drivers/coresight | |
parent | 799656de6f6587cecc0b05477501e41c211a75fa (diff) | |
download | talos-op-linux-84b763d5b808ee6c23d95314ac81859cab471adb.tar.gz talos-op-linux-84b763d5b808ee6c23d95314ac81859cab471adb.zip |
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>
Diffstat (limited to 'drivers/coresight')
-rw-r--r-- | drivers/coresight/coresight-priv.h | 2 |
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); } |