1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef AMD_BLOCK_IMAGE_H 4 #define AMD_BLOCK_IMAGE_H 5 6 #include <stdint.h> 7 8 void *amd_find_image(const void *start_address, const void *end_address, 9 uint32_t alignment, const char name[8]); 10 11 #endif /* AMD_BLOCK_IMAGE_H */ 12