Skip to content

Commit 79e2436

Browse files
pascal-nordicnordicjm
authored andcommitted
samples: cellular: mss: Fix for wrong header name
Replacing SAMPLE_REBOOT definition to PROVISIONING_SUPPORT. Based on #19302. Co-Authored-By: Adrian Tayag Signed-off-by: Pascal Hernandez <[email protected]>
1 parent fe193fc commit 79e2436

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,7 @@ Cellular samples
326326

327327
* Fixed:
328328

329+
* Wrong header naming in :file:`provisioning_support.h` that was causing build errors when :file:`sample_reboot.h` was included in other source files.
329330
* An issue with an uninitialized variable in the :c:func:`handle_at_cmd_requests` function.
330331
* An issue with the too small :kconfig:option:`CONFIG_COAP_EXTENDED_OPTIONS_LEN_VALUE` Kconfig value
331332
in the :file:`overlay-coap_nrf_provisioning.conf` file.

samples/cellular/nrf_cloud_multi_service/src/provisioning_support.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/* Copyright (c) 2023 Nordic Semiconductor ASA
1+
/* Copyright (c) 2023-2025 Nordic Semiconductor ASA
22
*
33
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
44
*/
55

6-
#ifndef _SAMPLE_REBOOT_H_
7-
#define _SAMPLE_REBOOT_H_
6+
#ifndef _PROVISIONING_SUPPORT_H_
7+
#define _PROVISIONING_SUPPORT_H_
88

99
#include <zephyr/kernel.h>
1010

@@ -28,4 +28,4 @@ static inline bool await_provisioning_idle(k_timeout_t timeout)
2828

2929
#endif /*CONFIG_NRF_PROVISIONING*/
3030

31-
#endif /* _SAMPLE_REBOOT_H_ */
31+
#endif /* _PROVISIONING_SUPPORT_H_ */

0 commit comments

Comments
 (0)