mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-09 16:56:58 +02:00
Most i.MX implements get_boot_device, move it to common header to simplify code Signed-off-by: Peng Fan <peng.fan@nxp.com>
13 lines
266 B
C
13 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_ */
|