hyp_stub.c 424 B

1234567891011121314151617181920
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #include "hab.h"
  7. int hab_hypervisor_register(void)
  8. {
  9. hab_driver.b_loopback = 1;
  10. return 0;
  11. }
  12. void hab_hypervisor_unregister(void)
  13. {
  14. hab_hypervisor_unregister_common();
  15. }
  16. int hab_hypervisor_register_post(void) { return 0; }