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

Commit d8204ee2 authored by Kumar Gala's avatar Kumar Gala Committed by Linus Torvalds
Browse files

dmi: Fix build breakage



Commit d7b1956f ("DMI: Introduce
dmi_first_match to make the interface more flexible") introduced compile
errors like the following when !CONFIG_DMI

    drivers/ata/sata_sil.c: In function 'sil_broken_system_poweroff':
    drivers/ata/sata_sil.c:713: error: implicit declaration of function 'dmi_first_match'
    drivers/ata/sata_sil.c:713: warning: initialization makes pointer from integer without a cast

We just need a dummy version of dmi_first_match() to fix this all up.

Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 30b23634
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -65,6 +65,8 @@ static inline int dmi_walk(void (*decode)(const struct dmi_header *))
	{ return -1; }
	{ return -1; }
static inline bool dmi_match(enum dmi_field f, const char *str)
static inline bool dmi_match(enum dmi_field f, const char *str)
	{ return false; }
	{ return false; }
static inline const struct dmi_system_id *
	dmi_first_match(const struct dmi_system_id *list) { return NULL; }


#endif
#endif