Skip to content

Commit

Permalink
ARM: at91: fix at91_suspend_entering_slow_clock link error
Browse files Browse the repository at this point in the history
When CONFIG_ARCH_AT91 is enabled, but none of the specific SoC support
is in use, some at91 specific drivers fail to link:

drivers/tty/serial/atmel_serial.o: In function `atmel_serial_suspend':
atmel_serial.c:(.text.atmel_serial_suspend+0x1e): undefined reference to `at91_suspend_entering_slow_clock'
drivers/usb/host/ohci-at91.o: In function `ohci_hcd_at91_drv_suspend':
ohci-at91.c:(.text.ohci_hcd_at91_drv_suspend+0x12): undefined reference to `at91_suspend_entering_slow_clock'
drivers/usb/gadget/udc/at91_udc.o: In function `at91udc_suspend':
at91_udc.c:(.text.at91udc_suspend+0x26): undefined reference to `at91_suspend_entering_slow_clock'

This changes the at91_suspend_entering_slow_clock hack once more, adding
an alternative inline implementation that is used exactly in those cases
that don't provide the normal implementation.

Fixes: c1892c2379d2 ("ARM: at91: handle CONFIG_PM for armv7m configurations")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
  • Loading branch information
Arnd Bergmann authored and Alexandre Belloni committed Jun 13, 2017
1 parent 63e07c0 commit be36e00
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
9 changes: 0 additions & 9 deletions arch/arm/mach-at91/samv7.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,6 @@
#include <asm/system_misc.h>
#include "generic.h"

#ifdef CONFIG_PM
/* This function has to be defined for various drivers that are using it */
int at91_suspend_entering_slow_clock(void)
{
return 0;
}
EXPORT_SYMBOL(at91_suspend_entering_slow_clock);
#endif

static const char *const samv7_dt_board_compat[] __initconst = {
"atmel,samv7",
NULL
Expand Down
7 changes: 7 additions & 0 deletions include/linux/platform_data/atmel.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ struct atmel_uart_data {
};

/* FIXME: this needs a better location, but gets stuff building again */
#ifdef CONFIG_ATMEL_PM
extern int at91_suspend_entering_slow_clock(void);
#else
static inline int at91_suspend_entering_slow_clock(void)
{
return 0;
}
#endif

#endif /* __ATMEL_H__ */

0 comments on commit be36e00

Please sign in to comment.