diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-03-13 22:57:23 +0100 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2015-03-19 16:37:45 +0100 |
commit | 23b8408246aef28499a918b10425c1da4fef613a (patch) | |
tree | 330e5ba1033c92ce7d84e7499228267d602d3227 /arch/arm/mach-at91/pm.c | |
parent | 4c8056543e6aa283fe03b1e96d2dd22816ee4350 (diff) |
ARM: at91: remove hardware.h
hardware.h is now mostyl unused, move the remaining declarations to pm.c and
remove it.
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/pm.c')
-rw-r--r-- | arch/arm/mach-at91/pm.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/arch/arm/mach-at91/pm.c b/arch/arm/mach-at91/pm.c index 2a12c01afc67..f93a735ba327 100644 --- a/arch/arm/mach-at91/pm.c +++ b/arch/arm/mach-at91/pm.c @@ -32,11 +32,18 @@ #include <asm/fncpy.h> #include <asm/cacheflush.h> -#include <mach/hardware.h> - #include "generic.h" #include "pm.h" +/* + * FIXME: this is needed to communicate between the pinctrl driver and + * the PM implementation in the machine. Possibly part of the PM + * implementation should be moved down into the pinctrl driver and get + * called as part of the generic suspend/resume path. + */ +extern void at91_pinctrl_gpio_suspend(void); +extern void at91_pinctrl_gpio_resume(void); + static struct { unsigned long uhp_udp_mask; int memctrl; |