mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 07:14:14 -05:00
It defines the `cc_platform_has()` function. Reviewed by: manu Approved by: manu Differential Revision: https://reviews.freebsd.org/D38596
17 lines
272 B
C
17 lines
272 B
C
/* Public domain. */
|
|
|
|
#ifndef _LINUXKPI_LINUX_CC_PLATFORM_H_
|
|
#define _LINUXKPI_LINUX_CC_PLATFORM_H_
|
|
|
|
enum cc_attr {
|
|
CC_ATTR_MEM_ENCRYPT,
|
|
};
|
|
|
|
static inline bool
|
|
cc_platform_has(enum cc_attr attr __unused)
|
|
{
|
|
|
|
return (false);
|
|
}
|
|
|
|
#endif /* _LINUXKPI_LINUX_CC_PLATFORM_H_ */
|