diff options
| author | Stefan Roese <[email protected]> | 2014-10-22 12:13:16 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2014-10-23 09:59:21 -0400 |
| commit | 6d5fe560a58d1156fd54bcc5bd147d31dc38410d (patch) | |
| tree | 9eb5969a5b8cd4b7ebdfb3da786b3b60effaf4cf | |
| parent | 4fb3f0c8024bb1464364eecc9c7708ecf6119e35 (diff) | |
i2c: mvtwsi: Add support for Marvell Armada XP
To support the Armada XP SoC, we just need to include the correct header.
Signed-off-by: Stefan Roese <[email protected]>
Acked-by: Heiko Schocher <[email protected]>
Tested-by: Luka Perkov <[email protected]>
| -rw-r--r-- | drivers/i2c/mvtwsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/mvtwsi.c b/drivers/i2c/mvtwsi.c index a2deae6a3ae..9b2ca1e81ba 100644 --- a/drivers/i2c/mvtwsi.c +++ b/drivers/i2c/mvtwsi.c @@ -20,7 +20,7 @@ #if defined(CONFIG_ORION5X) #include <asm/arch/orion5x.h> -#elif defined(CONFIG_KIRKWOOD) +#elif (defined(CONFIG_KIRKWOOD) || defined(CONFIG_ARMADA_XP)) #include <asm/arch/soc.h> #elif defined(CONFIG_SUNXI) #include <asm/arch/i2c.h> |
