mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-20 22:21:27 +02:00
Put imx9_probe_mu declaration in a new mu.h header file. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Reviewed-by: Igor Opaniuk <igor.opaniuk@foundries.io>
14 lines
240 B
C
14 lines
240 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 *ctx, struct event *event);
|
|
|
|
#endif
|