mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-09 08:46:59 +02:00
Since the event callback imx9_probe_mu is re-defined, update its prototype. Signed-off-by: Ye Li <ye.li@nxp.com>
14 lines
214 B
C
14 lines
214 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2024 Mathieu Othacehe <m.othacehe@gmail.com>
|
|
*/
|
|
|
|
#ifndef __ARCH_IMX9_MU_H
|
|
#define __ARCH_IMX9_MU_H
|
|
|
|
#include <event.h>
|
|
|
|
int imx9_probe_mu(void);
|
|
|
|
#endif
|