blob: 8dcbac4be7341a5a8977596bc362713f875c2cd7 [file] [log] [blame]
Julian Halld635ad72022-09-20 15:50:35 +01001/*
2 * Copyright (c) 2022, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#include <stddef.h>
9#include <stdint.h>
10#include <plat/common/platform.h>
11
12int plat_get_image_source(
13 unsigned int image_id,
14 uintptr_t *dev_handle,
15 uintptr_t *image_spec)
16{
17 /* Needs to allow a TS factory method to define the image source */
18 (void)image_id;
19 *dev_handle = (uintptr_t)NULL;
20 *image_spec = (uintptr_t)NULL;
21 return -1;
22}