1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #10580 from gschorcht/drivers_sht3x_auto_init_fix

sys/auto_init: alphabetical order for SHT3x fixed
This commit is contained in:
Martine Lenders 2018-12-12 09:56:18 +01:00 committed by GitHub
commit 30b39dcf44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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