Skip to content
Snippets Groups Projects
Unverified Commit 30b39dcf authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #10580 from gschorcht/drivers_sht3x_auto_init_fix

sys/auto_init: alphabetical order for SHT3x fixed
parents 4ce63d00 56c09a08
No related branches found
No related tags found
No related merge requests found
......@@ -437,6 +437,10 @@ void auto_init(void)
extern void auto_init_pulse_counter(void);
auto_init_pulse_counter();
#endif
#ifdef MODULE_SHT3X
extern void auto_init_sht3x(void);
auto_init_sht3x();
#endif
#ifdef MODULE_SI114X
extern void auto_init_si114x(void);
auto_init_si114x();
......@@ -470,11 +474,6 @@ void auto_init(void)
auto_init_veml6070();
#endif
#ifdef MODULE_SHT3X
extern void auto_init_sht3x(void);
auto_init_sht3x();
#endif
#endif /* MODULE_AUTO_INIT_SAUL */
#ifdef MODULE_AUTO_INIT_GNRC_RPL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment