From e8e9b9e58856b68f1c51dd2d12695548618af3c4 Mon Sep 17 00:00:00 2001 From: Russell King Date: Wed, 31 Aug 2016 08:49:54 +0100 Subject: ARM: sa1100/cerf: move cerf header file Nothing outside arch/arm/mach-sa1100 needs the cerf header file, so move it into that directory. Signed-off-by: Russell King --- arch/arm/mach-sa1100/cerf.c | 3 ++- arch/arm/mach-sa1100/cerf.h | 13 +++++++++++++ arch/arm/mach-sa1100/include/mach/cerf.h | 13 ------------- 3 files changed, 15 insertions(+), 14 deletions(-) create mode 100644 arch/arm/mach-sa1100/cerf.h delete mode 100644 arch/arm/mach-sa1100/include/mach/cerf.h diff --git a/arch/arm/mach-sa1100/cerf.c b/arch/arm/mach-sa1100/cerf.c index f9243a3fd69c..9f9b0619b20a 100644 --- a/arch/arm/mach-sa1100/cerf.c +++ b/arch/arm/mach-sa1100/cerf.c @@ -27,9 +27,10 @@ #include #include -#include #include #include + +#include "cerf.h" #include "generic.h" static struct resource cerfuart2_resources[] = { diff --git a/arch/arm/mach-sa1100/cerf.h b/arch/arm/mach-sa1100/cerf.h new file mode 100644 index 000000000000..5a81085f5a6d --- /dev/null +++ b/arch/arm/mach-sa1100/cerf.h @@ -0,0 +1,13 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * cerf.h + * + * Apr-2003 : Removed some old PDA crud [FB] + */ +#ifndef _INCLUDE_CERF_H_ +#define _INCLUDE_CERF_H_ + +#define CERF_ETH_IO 0xf0000000 +#define CERF_ETH_IRQ IRQ_GPIO26 + +#endif // _INCLUDE_CERF_H_ diff --git a/arch/arm/mach-sa1100/include/mach/cerf.h b/arch/arm/mach-sa1100/include/mach/cerf.h deleted file mode 100644 index f629fc478093..000000000000 --- a/arch/arm/mach-sa1100/include/mach/cerf.h +++ /dev/null @@ -1,13 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ -/* - * arch/arm/mach-sa1100/include/mach/cerf.h - * - * Apr-2003 : Removed some old PDA crud [FB] - */ -#ifndef _INCLUDE_CERF_H_ -#define _INCLUDE_CERF_H_ - -#define CERF_ETH_IO 0xf0000000 -#define CERF_ETH_IRQ IRQ_GPIO26 - -#endif // _INCLUDE_CERF_H_ -- cgit