diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2019-04-29 18:37:12 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-04 13:04:10 -0400 |
commit | cef443c1666cc70d7b0902936311da986d09a77c (patch) | |
tree | 2ed1444bed57ddc6385b4454210855eb85fbf05f /arch/arm/mach-davinci/include/mach/i2c_defs.h | |
parent | 028020247d0e3946045dc5f6587c1539056bfee0 (diff) |
arm: davinci: remove leftover code for dm* SoCs
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>
Diffstat (limited to 'arch/arm/mach-davinci/include/mach/i2c_defs.h')
-rw-r--r-- | arch/arm/mach-davinci/include/mach/i2c_defs.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/arm/mach-davinci/include/mach/i2c_defs.h b/arch/arm/mach-davinci/include/mach/i2c_defs.h index 50e31ca3b9..f12460dd5f 100644 --- a/arch/arm/mach-davinci/include/mach/i2c_defs.h +++ b/arch/arm/mach-davinci/include/mach/i2c_defs.h @@ -8,10 +8,6 @@ #ifndef _I2C_DEFS_H_ #define _I2C_DEFS_H_ -#ifndef CONFIG_SOC_DA8XX -#define I2C_BASE 0x01c21000 -#else #define I2C_BASE 0x01c22000 -#endif #endif |