Julian Hall | d635ad7 | 2022-09-20 15:50:35 +0100 | [diff] [blame^] | 1 | /* |
| 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 | |
| 12 | int 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 | } |