book3s_exports.c 401 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. *
  4. * Copyright SUSE Linux Products GmbH 2009
  5. *
  6. * Authors: Alexander Graf <[email protected]>
  7. */
  8. #include <linux/export.h>
  9. #include <asm/kvm_ppc.h>
  10. #include <asm/kvm_book3s.h>
  11. #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
  12. EXPORT_SYMBOL_GPL(kvmppc_hv_entry_trampoline);
  13. #endif
  14. #ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
  15. EXPORT_SYMBOL_GPL(kvmppc_entry_trampoline);
  16. #endif