samples: Bluetooth: Fix peripheral_ht compile error

Fix peripheral_ht compile error introduced in
commit a202341958 ("devices: constify device pointers
initialized at compile time").

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
Vinayak Kariappa Chettimada 2022-10-05 16:45:00 +05:30 committed by Fabio Baltieri
commit b56c6eb697

View file

@ -26,7 +26,7 @@
#include <zephyr/bluetooth/gatt.h>
#ifdef CONFIG_TEMP_NRF5
static const struct device *const temp_dev = DEVICE_DT_GET_ANY(nordic_nrf_temp);
static const struct device *temp_dev = DEVICE_DT_GET_ANY(nordic_nrf_temp);
#else
static const struct device *temp_dev;
#endif