ina238: actually run it

Without this the driver would not run when started from the
i2c_launcher.
This commit is contained in:
Julian Oes 2025-05-14 13:38:28 +12:00 committed by Ramon Roche
parent abf903a851
commit bf9167da50

View File

@ -137,7 +137,15 @@ int INA238::init()
return ret;
}
return Reset();
ret = Reset();
if (ret) {
return ret;
}
start();
return 0;
}
int INA238::force_init()