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:
commit
30b39dcf44
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user