Server IP : 104.21.38.3 / Your IP : 172.70.189.25 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-5.15.0-143-generic/include/linux/rpmsg/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ /* * Follows implementation found in linux/virtio_byteorder.h */ #ifndef _LINUX_RPMSG_BYTEORDER_H #define _LINUX_RPMSG_BYTEORDER_H #include <linux/types.h> #include <uapi/linux/rpmsg_types.h> static inline bool rpmsg_is_little_endian(void) { #ifdef __LITTLE_ENDIAN return true; #else return false; #endif } static inline u16 __rpmsg16_to_cpu(bool little_endian, __rpmsg16 val) { if (little_endian) return le16_to_cpu((__force __le16)val); else return be16_to_cpu((__force __be16)val); } static inline __rpmsg16 __cpu_to_rpmsg16(bool little_endian, u16 val) { if (little_endian) return (__force __rpmsg16)cpu_to_le16(val); else return (__force __rpmsg16)cpu_to_be16(val); } static inline u32 __rpmsg32_to_cpu(bool little_endian, __rpmsg32 val) { if (little_endian) return le32_to_cpu((__force __le32)val); else return be32_to_cpu((__force __be32)val); } static inline __rpmsg32 __cpu_to_rpmsg32(bool little_endian, u32 val) { if (little_endian) return (__force __rpmsg32)cpu_to_le32(val); else return (__force __rpmsg32)cpu_to_be32(val); } static inline u64 __rpmsg64_to_cpu(bool little_endian, __rpmsg64 val) { if (little_endian) return le64_to_cpu((__force __le64)val); else return be64_to_cpu((__force __be64)val); } static inline __rpmsg64 __cpu_to_rpmsg64(bool little_endian, u64 val) { if (little_endian) return (__force __rpmsg64)cpu_to_le64(val); else return (__force __rpmsg64)cpu_to_be64(val); } #endif /* _LINUX_RPMSG_BYTEORDER_H */