clang-format: copy latest and re-format
clang-format-16 has some backwards incompatible changes that require
additional settings for best compatibility and re-running the formatter.
Copy the latest .clang-format from the docs repository and reformat the
repository.
Change-Id: I0d10afa582342818b9d90b168f6f39f71ce4e0f4
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
[AJ: regenerate using .clang-format from openbmc/docs@f44abd66eca8]
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
diff --git a/src/HwmonTempMain.cpp b/src/HwmonTempMain.cpp
index 4c28345..40451e1 100644
--- a/src/HwmonTempMain.cpp
+++ b/src/HwmonTempMain.cpp
@@ -82,13 +82,13 @@
{
// offset is to default to 0 and scale to 1, see lore
// https://lore.kernel.org/linux-iio/5c79425f-6e88-36b6-cdfe-4080738d039f@metafoo.de/
- struct SensorParams tmpSensorParameters = {.minValue = minValueTemperature,
- .maxValue = maxValueTemperature,
- .offsetValue = 0.0,
- .scaleValue = 1.0,
- .units =
- sensor_paths::unitDegreesC,
- .typeName = "temperature"};
+ struct SensorParams tmpSensorParameters = {
+ .minValue = minValueTemperature,
+ .maxValue = maxValueTemperature,
+ .offsetValue = 0.0,
+ .scaleValue = 1.0,
+ .units = sensor_paths::unitDegreesC,
+ .typeName = "temperature"};
// For IIO RAW sensors we get a raw_value, an offset, and scale
// to compute the value = (raw_value + offset) * scale
@@ -99,8 +99,8 @@
const std::string pathStr = path.string();
if (pathStr.ends_with("_raw"))
{
- std::string pathOffsetStr =
- pathStr.substr(0, pathStr.size() - 4) + "_offset";
+ std::string pathOffsetStr = pathStr.substr(0, pathStr.size() - 4) +
+ "_offset";
std::optional<double> tmpOffsetValue = readFile(pathOffsetStr, 1.0);
// In case there is nothing to read skip this device
// This is not an error condition see lore
@@ -110,8 +110,8 @@
tmpSensorParameters.offsetValue = *tmpOffsetValue;
}
- std::string pathScaleStr =
- pathStr.substr(0, pathStr.size() - 4) + "_scale";
+ std::string pathScaleStr = pathStr.substr(0, pathStr.size() - 4) +
+ "_scale";
std::optional<double> tmpScaleValue = readFile(pathScaleStr, 1.0);
// In case there is nothing to read skip this device
// This is not an error condition see lore
@@ -487,8 +487,8 @@
{
sensor = nullptr;
}
- auto hwmonFile =
- getFullHwmonFilePath(directory.string(), "temp1", permitSet);
+ auto hwmonFile = getFullHwmonFilePath(directory.string(), "temp1",
+ permitSet);
if (pathStr.starts_with("/sys/bus/iio/devices"))
{
hwmonFile = pathStr;