diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-03-13 13:15:25 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-03-14 17:34:55 +0100 |
commit | 3f9fb2a08f55c79b4c6cde423c1e8ddcc5a49781 (patch) | |
tree | 35a78bd1e63edb8c7f836bf20cf5032f8b9ed5ea /arch/arm/mach-cns3xxx/devices.c | |
parent | Linux 3.9-rc2 (diff) | |
download | linux-3f9fb2a08f55c79b4c6cde423c1e8ddcc5a49781.tar.xz linux-3f9fb2a08f55c79b4c6cde423c1e8ddcc5a49781.zip |
ARM: cns3xxx: make mach header files local
The mach/cns3xxx.h and mach/pm.h header files are used only
in the platform code itself, so there is no need to make
them globally visible. This gets us closer to multiplatform
configuration for cns3xxx.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-cns3xxx/devices.c')
-rw-r--r-- | arch/arm/mach-cns3xxx/devices.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/arm/mach-cns3xxx/devices.c b/arch/arm/mach-cns3xxx/devices.c index 1e40c99b015f..7da78a2451f1 100644 --- a/arch/arm/mach-cns3xxx/devices.c +++ b/arch/arm/mach-cns3xxx/devices.c @@ -16,9 +16,8 @@ #include <linux/compiler.h> #include <linux/dma-mapping.h> #include <linux/platform_device.h> -#include <mach/cns3xxx.h> -#include <mach/irqs.h> -#include <mach/pm.h> +#include "cns3xxx.h" +#include "pm.h" #include "core.h" #include "devices.h" |