clang-tidy:  correct include directives

Replaced angled brackets with quotes in include directives
for local headers in watchdog folder to resolve clang-tidy errors

Sample error:
'''
openpower-debug-collector/watchdog/watchdog_logging.cpp:4:10: error: 'watchdog_common.hpp'
     file not found with <angled> include; use "quotes" instead [clang-diagnostic-error]
    4 | #include <watchdog_common.hpp>
      |          ^~~~~~~~~~~~~~~~~~~~~
      |          "watchdog_common.hpp"
'''

Change-Id: I99810f37d74db2fda9b59310b0ffe6a8456e4239
Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
4 files changed
tree: f333143b572b3e9189f0f06f2fa5606eda3050c2
  1. dump/
  2. subprojects/
  3. watchdog/
  4. .clang-format
  5. .gitignore
  6. .shellcheck-ignore
  7. checkstop_app.cpp
  8. LICENSE
  9. meson.build
  10. meson.options
  11. OWNERS
  12. README.md
  13. watchdog_timeout.cpp
README.md

openpower-debug-collector

Building the Code

To build this package, do the following steps:

    1. meson build
    2. ninja -C build

To clean the repository run `rm -rf build`.