syscall: rename Z_SYSCALL_ to K_SYSCALL_

Rename internal API to not use z_/Z_.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2023-09-27 11:09:45 +00:00 committed by Carles Cufí
commit 9c4d881183
72 changed files with 369 additions and 369 deletions

View file

@ -26,7 +26,7 @@ static inline int z_vrfy_i2s_configure(const struct device *dev,
/* Check that the k_mem_slab provided is a valid pointer and that
* the caller has permission on it
*/
if (Z_SYSCALL_OBJ(config.mem_slab, K_OBJ_MEM_SLAB)) {
if (K_SYSCALL_OBJ(config.mem_slab, K_OBJ_MEM_SLAB)) {
goto out;
}