drivers/timer native: Replace native_posix with native_posix/sim

This driver is applicable to both targets.
Let's be clear about that.

Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
This commit is contained in:
Alberto Escolar Piedras 2023-12-05 17:14:05 +01:00 committed by Fabio Baltieri
parent 53bbded264
commit 9f15c41a7e
2 changed files with 3 additions and 3 deletions

View file

@ -4,12 +4,12 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
config NATIVE_POSIX_TIMER config NATIVE_POSIX_TIMER
bool "(POSIX) native_posix timer driver" bool "(POSIX) native_sim/posix timer driver"
default y default y
depends on BOARD_NATIVE_POSIX depends on BOARD_NATIVE_POSIX
select TICKLESS_CAPABLE select TICKLESS_CAPABLE
select TIMER_HAS_64BIT_CYCLE_COUNTER select TIMER_HAS_64BIT_CYCLE_COUNTER
select SYSTEM_TIMER_HAS_DISABLE_SUPPORT select SYSTEM_TIMER_HAS_DISABLE_SUPPORT
help help
This module implements a kernel device driver for the native_posix HW timer This module implements a kernel device driver for the native_sim/posix HW timer
model model

View file

@ -5,7 +5,7 @@
*/ */
/** /**
* Driver for the timer model of the POSIX native_posix board * Driver for the timer model of the POSIX native_sim/posix board
* It provides the interfaces required by the kernel and the sanity testcases * It provides the interfaces required by the kernel and the sanity testcases
* It also provides a custom k_busy_wait() which can be used with the * It also provides a custom k_busy_wait() which can be used with the
* POSIX arch and InfClock SOC * POSIX arch and InfClock SOC