mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 22:33:18 +00:00
1859b8b60d
Most i.MX implements get_boot_device, move it to common header to simplify code Signed-off-by: Peng Fan <peng.fan@nxp.com>
12 lines
266 B
C
12 lines
266 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2015 Freescale Semiconductor, Inc.
|
|
*/
|
|
#ifndef __SYS_PROTO_IMX7_
|
|
#define __SYS_PROTO_IMX7_
|
|
|
|
#include <asm/mach-imx/sys_proto.h>
|
|
|
|
void set_wdog_reset(struct wdog_regs *wdog);
|
|
|
|
#endif /* __SYS_PROTO_IMX7_ */
|