Suppress clang-format on one case

Newer version of clang-format will format this pair of braces differently
than clang-format-8, which is the version used in upstream CI. Turn off
clang-format to avoid a clang version update in CI breaking us.
Difference shown below.

```

Change-Id: I1633522f0c028af3cfd395bb143a5ea00410648e
--- a/mainloop.cpp (clang 8.0)
+++ b/mainloop.cpp (clang 10.0)
@@ -80,8 +80,7 @@ void updateSensorInterfaces(InterfaceMap& ifaces, int64_t value)
     {
         switch (iface.first)
         {
-            case InterfaceType::VALUE:
-            {
+            case InterfaceType::VALUE: {
```

Signed-off-by: Kun Yi <kunyi731@gmail.com>
Change-Id: I1339a10173a4632decbe1be6c4d7ab8a397a9f38
1 file changed
tree: a6e5e56e47c6b7b38fee5edf4089b89ab618eab9
  1. msl/
  2. test/
  3. tools/
  4. .clang-format
  5. .gitignore
  6. .lcovrc
  7. average.cpp
  8. average.hpp
  9. bootstrap.sh
  10. configure.ac
  11. env.cpp
  12. env.hpp
  13. fan_pwm.cpp
  14. fan_pwm.hpp
  15. fan_speed.cpp
  16. fan_speed.hpp
  17. gpio_handle.cpp
  18. gpio_handle.hpp
  19. hwmon.cpp
  20. hwmon.hpp
  21. hwmonio.cpp
  22. hwmonio.hpp
  23. interface.hpp
  24. LICENSE
  25. mainloop.cpp
  26. mainloop.hpp
  27. MAINTAINERS
  28. Makefile.am
  29. readd.cpp
  30. README.iio.md
  31. README.md
  32. sensor.cpp
  33. sensor.hpp
  34. sensorset.cpp
  35. sensorset.hpp
  36. sysfs.cpp
  37. sysfs.hpp
  38. targets.hpp
  39. thresholds.hpp
  40. types.hpp
  41. util.hpp
README.md

Exposes generic hwmon entries as DBus objects. More information can be found at Sensor Architecture

To Build

To build this package, do the following steps:

    1. ./bootstrap.sh
    2. ./configure ${CONFIGURE_FLAGS}
    3. make

To clean the repository run `./bootstrap.sh clean`.

D-Bus bus names

To enable the use of Linux features like cgroups prioritization and
udev/systemd control, one instance of phosphor-hwmon is intended to
be run per hwmon sysfs class instance.

This requires an algorithm for selecting a stable, well-known D-Bus busname.

The algorithm is <PREFIX>-<ID>.Hwmon<N> where PREFIX is an autoconf
configurable prefix (BUSNAME_PREFIX, xyz.openbmc_project by default),
ID is a std::hash of the /sys/devices path backing the hwmon class
instance, and N is the implemented phosphor-hwmon D-Bus API version.