Commit 26ecaba4 authored by Daniel Leung's avatar Daniel Leung Committed by Anas Nashif
Browse files

drivers: syscalls: use zephyr_syscall_header



This adds a few line use zephyr_syscall_header() to include
headers containing syscall function prototypes.

Signed-off-by: default avatarDaniel Leung <daniel.leung@intel.com>
parent 1d4d718a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0

zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/adc.h)

zephyr_library()

zephyr_library_sources_ifdef(CONFIG_ADC			adc_common.c)
+2 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0

zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/auxdisplay.h)

zephyr_library()
zephyr_library_sources_ifdef(CONFIG_AUXDISPLAY_HD44780		auxdisplay_hd44780.c)
zephyr_library_sources_ifdef(CONFIG_AUXDISPLAY_ITRON		auxdisplay_itron.c)
+2 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0

zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/cache.h)

zephyr_library()
zephyr_library_property(ALLOW_EMPTY TRUE)

+2 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0

zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/can.h)

zephyr_library()
zephyr_sources_ifdef(CONFIG_CAN_MCUX_MCAN    can_mcux_mcan.c)

+5 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0

zephyr_syscall_header_ifdef(
  CONFIG_UART_MUX
  ${ZEPHYR_BASE}/include/zephyr/drivers/console/uart_mux.h
)

zephyr_library()

zephyr_library_sources_ifdef(CONFIG_GSM_MUX gsm_mux.c)
Loading