Namespaced the generated headers with `zephyr` to prevent potential conflict with other headers. Introduce a temporary Kconfig `LEGACY_GENERATED_INCLUDE_PATH` that is enabled by default. This allows the developers to continue the use of the old include paths for the time being until it is deprecated and eventually removed. The Kconfig will generate a build-time warning message, similar to the `CONFIG_TIMER_RANDOM_GENERATOR`. Updated the includes path of in-tree sources accordingly. Most of the changes here are scripted, check the PR for more info. Signed-off-by: Yong Cong Sin <ycsin@meta.com>
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/drivers/peci.h>
|
|
#include <zephyr/internal/syscall_handler.h>
|
|
|
|
|
|
static inline int z_vrfy_peci_config(const struct device *dev,
|
|
uint32_t bitrate)
|
|
{
|
|
K_OOPS(K_SYSCALL_DRIVER_PECI(dev, config));
|
|
|
|
return z_impl_peci_config(dev, bitrate);
|
|
}
|
|
#include <zephyr/syscalls/peci_config_mrsh.c>
|
|
|
|
static inline int z_vrfy_peci_enable(const struct device *dev)
|
|
{
|
|
K_OOPS(K_SYSCALL_DRIVER_PECI(dev, enable));
|
|
|
|
return z_impl_peci_enable(dev);
|
|
}
|
|
#include <zephyr/syscalls/peci_enable_mrsh.c>
|
|
|
|
static inline int z_vrfy_peci_disable(const struct device *dev)
|
|
{
|
|
K_OOPS(K_SYSCALL_DRIVER_PECI(dev, disable));
|
|
|
|
return z_impl_peci_disable(dev);
|
|
}
|
|
#include <zephyr/syscalls/peci_disable_mrsh.c>
|
|
|
|
static inline int z_vrfy_peci_transfer(const struct device *dev,
|
|
struct peci_msg *msg)
|
|
{
|
|
struct peci_msg msg_copy;
|
|
|
|
K_OOPS(K_SYSCALL_DRIVER_PECI(dev, transfer));
|
|
K_OOPS(k_usermode_from_copy(&msg_copy, msg, sizeof(*msg)));
|
|
|
|
return z_impl_peci_transfer(dev, &msg_copy);
|
|
}
|
|
#include <zephyr/syscalls/peci_transfer_mrsh.c>
|