mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 13:44:29 +00:00
cef443c166
The support for DaVinci DM* SoCs has been dropped a while ago. There's still a lot of leftover code in mach-davinci though. Entirely remove certain files and modify the common code to no longer reference unsupported chips. Note: all DaVinci platforms supported in u-boot now define SOC_DA8XX but not all define SOC_DA850 (e.g. omapl138). We can safely remove all ifdefs for the former, but let's leave the ones for the latter. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
13 lines
258 B
C
13 lines
258 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2004-2014
|
|
* Texas Instruments, <www.ti.com>
|
|
*
|
|
* Some changes copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
|
|
*/
|
|
#ifndef _I2C_DEFS_H_
|
|
#define _I2C_DEFS_H_
|
|
|
|
#define I2C_BASE 0x01c22000
|
|
|
|
#endif
|