mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-18 21:02:04 +00:00
If the R-Car RST driver is not included, compile-testing R-Car clock
drivers fails with a link error:
undefined reference to `rcar_rst_read_mode_pins'
To fix this, provide a dummy version. Use the exact same test logic as
in drivers/soc/renesas/Makefile, as there is no Kconfig symbol (yet) to
control compilation of the R-Car RST driver.
Fixes: 527c02f66d
("soc: renesas: Add R-Car RST driver")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
11 lines
395 B
C
11 lines
395 B
C
#ifndef __LINUX_SOC_RENESAS_RCAR_RST_H__
|
|
#define __LINUX_SOC_RENESAS_RCAR_RST_H__
|
|
|
|
#if defined(CONFIG_ARCH_RCAR_GEN1) || defined(CONFIG_ARCH_RCAR_GEN2) || \
|
|
defined(CONFIG_ARCH_R8A7795) || defined(CONFIG_ARCH_R8A7796)
|
|
int rcar_rst_read_mode_pins(u32 *mode);
|
|
#else
|
|
static inline int rcar_rst_read_mode_pins(u32 *mode) { return -ENODEV; }
|
|
#endif
|
|
|
|
#endif /* __LINUX_SOC_RENESAS_RCAR_RST_H__ */
|