mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
1a4596601f
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
17 lines
278 B
C
17 lines
278 B
C
/*
|
|
* U-boot - setup.h
|
|
*
|
|
* Copyright (c) 2005-2007 Analog Devices Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _SHARED_RESOURCES_H_
|
|
#define _SHARED_RESOURCES_H_
|
|
|
|
void swap_to(int device_id);
|
|
|
|
#define FLASH 0
|
|
#define ETHERNET 1
|
|
|
|
#endif /* _SHARED_RESOURCES_H_ */
|