diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2010-06-29 03:32:42 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2010-07-06 13:41:57 -0400 |
commit | 4b2bf4b3fc066d45870b7f33fa23dbcb9cb1a27f (patch) | |
tree | 58bb13374c4ca02b2a89f63169af72303216f41a /arch/tile | |
parent | 0707ad30d10110aebc01a5a64fb63f4b32d20b73 (diff) |
tile: remove homegrown L1_CACHE_ALIGN macro
Let's use the standard L1_CACHE_ALIGN macro instead.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Acked-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile')
-rw-r--r-- | arch/tile/include/asm/cache.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/tile/include/asm/cache.h b/arch/tile/include/asm/cache.h index c2b7dcfe5327..ee597147e5cd 100644 --- a/arch/tile/include/asm/cache.h +++ b/arch/tile/include/asm/cache.h | |||
@@ -20,7 +20,6 @@ | |||
20 | /* bytes per L1 data cache line */ | 20 | /* bytes per L1 data cache line */ |
21 | #define L1_CACHE_SHIFT CHIP_L1D_LOG_LINE_SIZE() | 21 | #define L1_CACHE_SHIFT CHIP_L1D_LOG_LINE_SIZE() |
22 | #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT) | 22 | #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT) |
23 | #define L1_CACHE_ALIGN(x) (((x)+(L1_CACHE_BYTES-1)) & -L1_CACHE_BYTES) | ||
24 | 23 | ||
25 | /* bytes per L1 instruction cache line */ | 24 | /* bytes per L1 instruction cache line */ |
26 | #define L1I_CACHE_SHIFT CHIP_L1I_LOG_LINE_SIZE() | 25 | #define L1I_CACHE_SHIFT CHIP_L1I_LOG_LINE_SIZE() |