Commit 697588f4 authored by Eivind Jølsgard's avatar Eivind Jølsgard Committed by Fabio Baltieri
Browse files

boards: nordic: nrf9160dk: Correct board check for nrf52840_reset



With HWMv2 CONFIG_BOARD_NRF9160DK_NRF9160 is not defined when building
the non-secure target, so it has to be specified.

Signed-off-by: default avatarEivind Jølsgard <eivind.jolsgard@nordicsemi.no>
parent 2455291d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
# Copyright (c) 2019 Nordic Semiconductor ASA.
# SPDX-License-Identifier: Apache-2.0

if(CONFIG_BOARD_NRF9160DK_NRF9160)
if(CONFIG_BOARD_NRF9160DK_NRF9160 OR CONFIG_BOARD_NRF9160DK_NRF9160_NS)
  zephyr_library()
  zephyr_library_sources(nrf52840_reset.c)
elseif(CONFIG_BOARD_NRF9160DK_NRF52840)