diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-03-12 15:54:24 +0100 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2015-03-13 15:11:04 +0100 |
commit | 0d3441928b45cc42fdc8949153e8a0b51615300d (patch) | |
tree | b68393f028a2e9322290e03dccb25cd3489459b9 /arch/arm/mach-at91/include/mach | |
parent | 1be27c62d61d23e8426834785d7989daa6745aa8 (diff) | |
download | linux-0d3441928b45cc42fdc8949153e8a0b51615300d.tar.gz linux-0d3441928b45cc42fdc8949153e8a0b51615300d.tar.bz2 linux-0d3441928b45cc42fdc8949153e8a0b51615300d.zip |
ARM: at91: remove unused at91_ioremap_matrix and header
at91_ioremap_matrix and the at91_matrix.h header are not used anymore, remove
them.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91/include/mach')
-rw-r--r-- | arch/arm/mach-at91/include/mach/at91_matrix.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/arch/arm/mach-at91/include/mach/at91_matrix.h b/arch/arm/mach-at91/include/mach/at91_matrix.h deleted file mode 100644 index f8996c954131..000000000000 --- a/arch/arm/mach-at91/include/mach/at91_matrix.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (C) 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> - * - * Under GPLv2 - */ - -#ifndef __MACH_AT91_MATRIX_H__ -#define __MACH_AT91_MATRIX_H__ - -#ifndef __ASSEMBLY__ -extern void __iomem *at91_matrix_base; - -#define at91_matrix_read(field) \ - __raw_readl(at91_matrix_base + field) - -#define at91_matrix_write(field, value) \ - __raw_writel(value, at91_matrix_base + field) - -#else -.extern at91_matrix_base -#endif - -#endif /* __MACH_AT91_MATRIX_H__ */ |