tdx.h 281 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef BOOT_COMPRESSED_TDX_H
  3. #define BOOT_COMPRESSED_TDX_H
  4. #include <linux/types.h>
  5. #ifdef CONFIG_INTEL_TDX_GUEST
  6. void early_tdx_detect(void);
  7. #else
  8. static inline void early_tdx_detect(void) { };
  9. #endif
  10. #endif /* BOOT_COMPRESSED_TDX_H */