mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-03 01:50:25 +00:00
813c800107
Add board directory for Google Chameleon V3 board Signed-off-by: Paweł Anikiel <pan@semihalf.com> Reviewed-by: Simon Glass <sjg@chromium.org>
12 lines
263 B
C
12 lines
263 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2022 Google LLC
|
|
*/
|
|
|
|
/**
|
|
* mercury_aa1_read_mac() - Read mac address from on-board OTP memory
|
|
*
|
|
* @mac: Returned mac address
|
|
* Return: 0 if successful, -ve on error
|
|
*/
|
|
int mercury_aa1_read_mac(u8 *mac);
|