mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 09:27:35 +00:00
61143f741e
Fix diacritics in some instances of my name and change my e-mail address to kabel@kernel.org. Add corresponding .mailmap entries. Signed-off-by: Marek Behún <kabel@kernel.org> Reviewed-by: Stefan Roese <sr@denx.de>
15 lines
385 B
C
15 lines
385 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2018 Marek Behún <kabel@kernel.org>
|
|
*/
|
|
|
|
#ifndef _BOARD_CZNIC_TURRIS_MOX_MOX_SP_H_
|
|
#define _BOARD_CZNIC_TURRIS_MOX_MOX_SP_H_
|
|
|
|
#include <common.h>
|
|
|
|
const char *mox_sp_get_ecdsa_public_key(void);
|
|
int mbox_sp_get_board_info(u64 *sn, u8 *mac1, u8 *mac2, int *bv,
|
|
int *ram);
|
|
|
|
#endif /* _BOARD_CZNIC_TURRIS_MOX_MOX_SP_H_ */
|