This is an automated email from the ASF dual-hosted git repository. ccollins pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-mcumgr.git
commit 1aca72268fb6c21977bd45752bb7ca509262e7b0 Author: Christopher Collins <[email protected]> AuthorDate: Mon Feb 12 13:18:22 2018 -0800 Zephyr: use <> for non-relative include paths. For `#include` directives, Zephyr uses "" for paths relative to the source file; <> for headers in an include path. --- cmd/fs_mgmt/port/zephyr/src/zephyr_fs_mgmt.c | 6 +++--- cmd/img_mgmt/port/zephyr/src/zephyr_img_mgmt.c | 6 +++--- cmd/log_mgmt/port/zephyr/src/zephyr_log_mgmt.c | 8 ++++---- cmd/os_mgmt/port/zephyr/src/zephyr_os_mgmt.c | 8 ++++---- cmd/stat_mgmt/port/zephyr/src/zephyr_stat_mgmt.c | 8 ++++---- samples/smp_svr/zephyr/src/main.c | 12 ++++++------ 6 files changed, 24 insertions(+), 24 deletions(-) diff --git a/cmd/fs_mgmt/port/zephyr/src/zephyr_fs_mgmt.c b/cmd/fs_mgmt/port/zephyr/src/zephyr_fs_mgmt.c index 42b7d80..754d3c3 100644 --- a/cmd/fs_mgmt/port/zephyr/src/zephyr_fs_mgmt.c +++ b/cmd/fs_mgmt/port/zephyr/src/zephyr_fs_mgmt.c @@ -17,9 +17,9 @@ * under the License. */ -#include "mgmt/mgmt.h" -#include "fs_mgmt/fs_mgmt_impl.h" -#include "fs.h" +#include <fs.h> +#include <mgmt/mgmt.h> +#include <fs_mgmt/fs_mgmt_impl.h> int fs_mgmt_impl_filelen(const char *path, size_t *out_len) diff --git a/cmd/img_mgmt/port/zephyr/src/zephyr_img_mgmt.c b/cmd/img_mgmt/port/zephyr/src/zephyr_img_mgmt.c index 143b1e0..8693451 100644 --- a/cmd/img_mgmt/port/zephyr/src/zephyr_img_mgmt.c +++ b/cmd/img_mgmt/port/zephyr/src/zephyr_img_mgmt.c @@ -24,9 +24,9 @@ #include <init.h> #include <dfu/mcuboot.h> #include <dfu/flash_img.h> -#include "mgmt/mgmt.h" -#include "img_mgmt/img_mgmt_impl.h" -#include "img_mgmt/img_mgmt.h" +#include <mgmt/mgmt.h> +#include <img_mgmt/img_mgmt_impl.h> +#include <img_mgmt/img_mgmt.h> #include "../../../src/img_mgmt_priv.h" static struct device *zephyr_img_mgmt_flash_dev; diff --git a/cmd/log_mgmt/port/zephyr/src/zephyr_log_mgmt.c b/cmd/log_mgmt/port/zephyr/src/zephyr_log_mgmt.c index 41cf51e..378c3ea 100644 --- a/cmd/log_mgmt/port/zephyr/src/zephyr_log_mgmt.c +++ b/cmd/log_mgmt/port/zephyr/src/zephyr_log_mgmt.c @@ -18,10 +18,10 @@ */ #include <misc/util.h> -#include "logging/mdlog.h" -#include "mgmt/mgmt.h" -#include "log_mgmt/log_mgmt.h" -#include "log_mgmt/log_mgmt_impl.h" +#include <logging/mdlog.h> +#include <mgmt/mgmt.h> +#include <log_mgmt/log_mgmt.h> +#include <log_mgmt/log_mgmt_impl.h> #include "../../../src/log_mgmt_config.h" struct zephyr_log_mgmt_walk_arg { diff --git a/cmd/os_mgmt/port/zephyr/src/zephyr_os_mgmt.c b/cmd/os_mgmt/port/zephyr/src/zephyr_os_mgmt.c index 20ee5a6..e127bdb 100644 --- a/cmd/os_mgmt/port/zephyr/src/zephyr_os_mgmt.c +++ b/cmd/os_mgmt/port/zephyr/src/zephyr_os_mgmt.c @@ -21,10 +21,10 @@ #include <misc/reboot.h> #include <debug/object_tracing.h> #include <kernel_structs.h> -#include "logging/reboot_log.h" -#include "mgmt/mgmt.h" -#include "os_mgmt/os_mgmt.h" -#include "os_mgmt/os_mgmt_impl.h" +#include <logging/reboot_log.h> +#include <mgmt/mgmt.h> +#include <os_mgmt/os_mgmt.h> +#include <os_mgmt/os_mgmt_impl.h> static void zephyr_os_mgmt_reset_cb(struct k_timer *timer); static void zephyr_os_mgmt_reset_work_handler(struct k_work *work); diff --git a/cmd/stat_mgmt/port/zephyr/src/zephyr_stat_mgmt.c b/cmd/stat_mgmt/port/zephyr/src/zephyr_stat_mgmt.c index dd0ba0b..22654f8 100644 --- a/cmd/stat_mgmt/port/zephyr/src/zephyr_stat_mgmt.c +++ b/cmd/stat_mgmt/port/zephyr/src/zephyr_stat_mgmt.c @@ -18,10 +18,10 @@ */ #include <misc/util.h> -#include "stats.h" -#include "mgmt/mgmt.h" -#include "stat_mgmt/stat_mgmt.h" -#include "stat_mgmt/stat_mgmt_impl.h" +#include <stats.h> +#include <mgmt/mgmt.h> +#include <stat_mgmt/stat_mgmt.h> +#include <stat_mgmt/stat_mgmt_impl.h> struct zephyr_stat_mgmt_walk_arg { stat_mgmt_foreach_entry_fn *cb; diff --git a/samples/smp_svr/zephyr/src/main.c b/samples/smp_svr/zephyr/src/main.c index 3e06e40..fde3f4e 100644 --- a/samples/smp_svr/zephyr/src/main.c +++ b/samples/smp_svr/zephyr/src/main.c @@ -11,12 +11,12 @@ #include <bluetooth/bluetooth.h> #include <bluetooth/conn.h> #include <bluetooth/gatt.h> -#include "logging/mdlog.h" -#include "logging/reboot_log.h" -#include "fcb.h" -#include "stats.h" -#include "mgmt/smp_bt.h" -#include "mgmt/buf.h" +#include <logging/mdlog.h> +#include <logging/reboot_log.h> +#include <fcb.h> +#include <stats.h> +#include <mgmt/smp_bt.h> +#include <mgmt/buf.h> #ifdef CONFIG_MCUMGR_CMD_FS_MGMT #include "fs_mgmt/fs_mgmt.h" -- To stop receiving notification emails like this one, please contact [email protected].
