15 lines
223 B
C
15 lines
223 B
C
|
/*
|
||
|
* Copyright (c) 2017 - 2020, Broadcom
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*/
|
||
|
|
||
|
#ifndef SCP_H
|
||
|
#define SCP_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
int download_scp_patch(void *image, unsigned int image_size);
|
||
|
|
||
|
#endif /* SCP_H */
|