1 /* 2 * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #include <service_locator.h> 8 #include <service/locator/linux/ffa/linuxffa_location_strategy.h> 9 #include <service/locator/linux/mm_communicate/mm_communicate_location_strategy.h> 10 service_locator_envinit(void)11void service_locator_envinit(void) 12 { 13 /* 14 * Register all service location strategies that could be used 15 * to locate services from Linux userspace. 16 */ 17 service_locator_register_strategy(linux_ts_location_strategy()); 18 service_locator_register_strategy(mm_communicate_location_strategy()); 19 } 20