From 9078b7ec09b135f091cb951ed234bf013c9c838e Mon Sep 17 00:00:00 2001 From: Michal Hanus Date: Sat, 19 Apr 2025 22:50:44 +0200 Subject: bme680 added --- .../zephyr/include/generated/syscalls/peci.h | 122 --------------------- 1 file changed, 122 deletions(-) delete mode 100644 nrfdemo/builddk/zephyr/include/generated/syscalls/peci.h (limited to 'nrfdemo/builddk/zephyr/include/generated/syscalls/peci.h') diff --git a/nrfdemo/builddk/zephyr/include/generated/syscalls/peci.h b/nrfdemo/builddk/zephyr/include/generated/syscalls/peci.h deleted file mode 100644 index 6d3a15a..0000000 --- a/nrfdemo/builddk/zephyr/include/generated/syscalls/peci.h +++ /dev/null @@ -1,122 +0,0 @@ -/* auto-generated by gen_syscalls.py, don't edit */ - -#ifndef Z_INCLUDE_SYSCALLS_PECI_H -#define Z_INCLUDE_SYSCALLS_PECI_H - - -#include - -#ifndef _ASMLANGUAGE - -#include - -#include -#include - -#include - - -#ifdef __cplusplus -extern "C" { -#endif - -extern int z_impl_peci_config(const struct device * dev, uint32_t bitrate); - -__pinned_func -static inline int peci_config(const struct device * dev, uint32_t bitrate) -{ -#ifdef CONFIG_USERSPACE - if (z_syscall_trap()) { - union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; - union { uintptr_t x; uint32_t val; } parm1 = { .val = bitrate }; - return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PECI_CONFIG); - } -#endif - compiler_barrier(); - return z_impl_peci_config(dev, bitrate); -} - -#if defined(CONFIG_TRACING_SYSCALL) -#ifndef DISABLE_SYSCALL_TRACING - -#define peci_config(dev, bitrate) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_CONFIG, peci_config, dev, bitrate); syscall__retval = peci_config(dev, bitrate); sys_port_trace_syscall_exit(K_SYSCALL_PECI_CONFIG, peci_config, dev, bitrate, syscall__retval); syscall__retval; }) -#endif -#endif - - -extern int z_impl_peci_enable(const struct device * dev); - -__pinned_func -static inline int peci_enable(const struct device * dev) -{ -#ifdef CONFIG_USERSPACE - if (z_syscall_trap()) { - union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; - return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PECI_ENABLE); - } -#endif - compiler_barrier(); - return z_impl_peci_enable(dev); -} - -#if defined(CONFIG_TRACING_SYSCALL) -#ifndef DISABLE_SYSCALL_TRACING - -#define peci_enable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_ENABLE, peci_enable, dev); syscall__retval = peci_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_PECI_ENABLE, peci_enable, dev, syscall__retval); syscall__retval; }) -#endif -#endif - - -extern int z_impl_peci_disable(const struct device * dev); - -__pinned_func -static inline int peci_disable(const struct device * dev) -{ -#ifdef CONFIG_USERSPACE - if (z_syscall_trap()) { - union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; - return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PECI_DISABLE); - } -#endif - compiler_barrier(); - return z_impl_peci_disable(dev); -} - -#if defined(CONFIG_TRACING_SYSCALL) -#ifndef DISABLE_SYSCALL_TRACING - -#define peci_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_DISABLE, peci_disable, dev); syscall__retval = peci_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_PECI_DISABLE, peci_disable, dev, syscall__retval); syscall__retval; }) -#endif -#endif - - -extern int z_impl_peci_transfer(const struct device * dev, struct peci_msg * msg); - -__pinned_func -static inline int peci_transfer(const struct device * dev, struct peci_msg * msg) -{ -#ifdef CONFIG_USERSPACE - if (z_syscall_trap()) { - union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; - union { uintptr_t x; struct peci_msg * val; } parm1 = { .val = msg }; - return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PECI_TRANSFER); - } -#endif - compiler_barrier(); - return z_impl_peci_transfer(dev, msg); -} - -#if defined(CONFIG_TRACING_SYSCALL) -#ifndef DISABLE_SYSCALL_TRACING - -#define peci_transfer(dev, msg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_TRANSFER, peci_transfer, dev, msg); syscall__retval = peci_transfer(dev, msg); sys_port_trace_syscall_exit(K_SYSCALL_PECI_TRANSFER, peci_transfer, dev, msg, syscall__retval); syscall__retval; }) -#endif -#endif - - -#ifdef __cplusplus -} -#endif - -#endif -#endif /* include guard */ -- cgit v1.2.3