@@ -221,9 +221,9 @@ static const std::map<std::string, FnCreateI2CSensorDriver> I2cFactorySensor = {
221221 {" mlx90632d_ext" ,
222222 [](TwoWire *i2c, uint16_t addr, uint32_t mux_channel,
223223 const char *driver_name) -> drvBase * {
224- drvMLX90632 *drv = new drvMLX90632 (i2c, addr, mux_channel, driver_name);
225- drv->ConfigureAndPrintSensorInfo (true );
226- return drv;
224+ drvMLX90632 *drv = new drvMLX90632 (i2c, addr, mux_channel, driver_name);
225+ drv->ConfigureAndPrintSensorInfo (true );
226+ return drv;
227227 }},
228228 {" mpl115a2" ,
229229 [](TwoWire *i2c, uint16_t addr, uint32_t mux_channel,
@@ -389,7 +389,7 @@ static const std::map<std::string, FnCreateI2CSensorDriver> I2cFactorySensor = {
389389 [](TwoWire *i2c, uint16_t addr, uint32_t mux_channel,
390390 const char *driver_name) -> drvBase * {
391391 return new drvVl6180x (i2c, addr, mux_channel, driver_name);
392- }}}; // /< I2C driver factory
392+ }}}; // /< I2C driver factory
393393
394394static const std::unordered_map<uint16_t , std::vector<const char *>>
395395 map_address_to_drivers = {
0 commit comments