diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2016-05-21 08:10:39 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@mellanox.com> | 2016-05-23 12:17:22 -0400 |
commit | a87e2cdc21332592fc1c62041cfcb85111f6df5e (patch) | |
tree | 266e18aea163aaac56a71b21840b4065ace8bf5b | |
parent | 4ef00aa30a3f382de9530df8f4083da316d95fb6 (diff) |
Fix typo
Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
-rw-r--r-- | arch/tile/gxio/mpipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/tile/gxio/mpipe.c b/arch/tile/gxio/mpipe.c index f102048d9c0e..34de300ab320 100644 --- a/arch/tile/gxio/mpipe.c +++ b/arch/tile/gxio/mpipe.c | |||
@@ -122,7 +122,7 @@ size_t gxio_mpipe_calc_buffer_stack_bytes(unsigned long buffers) | |||
122 | { | 122 | { |
123 | const int BUFFERS_PER_LINE = 12; | 123 | const int BUFFERS_PER_LINE = 12; |
124 | 124 | ||
125 | /* Count the number of cachlines. */ | 125 | /* Count the number of cachelines. */ |
126 | unsigned long lines = | 126 | unsigned long lines = |
127 | (buffers + BUFFERS_PER_LINE - 1) / BUFFERS_PER_LINE; | 127 | (buffers + BUFFERS_PER_LINE - 1) / BUFFERS_PER_LINE; |
128 | 128 | ||