aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuo Ren <[email protected]>2021-05-30 04:53:28 +0000
committerMichal Simek <[email protected]>2021-05-31 14:24:25 +0200
commit695efefb2e31cade92864d736596d3fbcd563b60 (patch)
treec26fef457a38f679fba477184e4ba9e7a7d872ea
parent6efb943b8616ec53a5e444193dccf1af9ad627b5 (diff)
microblaze: Cleanup unused functions
These functions haven't been used, so just remove them. The patch just uses grep to verify. Signed-off-by: Guo Ren <[email protected]> Reviewed-by: Anup Patel <[email protected]> Reviewed-by: Christoph Hellwig <[email protected]> Reviewed-by: Palmer Dabbelt <[email protected]> Cc: Arnd Bergmann <[email protected]> Cc: Michal Simek <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Michal Simek <[email protected]>
-rw-r--r--arch/microblaze/include/asm/page.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/microblaze/include/asm/page.h b/arch/microblaze/include/asm/page.h
index bf681f272f72..ce550978f4fc 100644
--- a/arch/microblaze/include/asm/page.h
+++ b/arch/microblaze/include/asm/page.h
@@ -35,9 +35,6 @@
#define ARCH_SLAB_MINALIGN L1_CACHE_BYTES
-#define PAGE_UP(addr) (((addr)+((PAGE_SIZE)-1))&(~((PAGE_SIZE)-1)))
-#define PAGE_DOWN(addr) ((addr)&(~((PAGE_SIZE)-1)))
-
/*
* PAGE_OFFSET -- the first address of the first page of memory. With MMU
* it is set to the kernel start address (aligned on a page boundary).