Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da65a158 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven
Browse files

base: soc: Provide a dummy implementation of soc_device_match()



Provide a dummy implementation of soc_device_match(), to allow compiling
drivers that may be used on SoCs both with and without CONFIG_SOC_BUS,
and for compile testing.

Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
parent ab6a713e
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -35,6 +35,12 @@ void soc_device_unregister(struct soc_device *soc_dev);
 */
 */
struct device *soc_device_to_device(struct soc_device *soc);
struct device *soc_device_to_device(struct soc_device *soc);


#ifdef CONFIG_SOC_BUS
const struct soc_device_attribute *soc_device_match(
const struct soc_device_attribute *soc_device_match(
	const struct soc_device_attribute *matches);
	const struct soc_device_attribute *matches);
#else
static inline const struct soc_device_attribute *soc_device_match(
	const struct soc_device_attribute *matches) { return NULL; }
#endif

#endif /* __SOC_BUS_H */
#endif /* __SOC_BUS_H */