blob: cb940f49a8ea0dec95f84f70425959919db7ec2b [file] [log] [blame]
Julian Hall8cff2b82020-11-23 18:12:17 +01001/*
2 * Copyright (c) 2020, 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
10
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(linuxffa_location_strategy());
18}