|
@@ -29,7 +29,7 @@ DECLARE_GLOBAL_DATA_PTR;
|
|
|
#include <asm/arch/orion5x.h>
|
|
|
#elif (defined(CONFIG_KIRKWOOD) || defined(CONFIG_ARCH_MVEBU))
|
|
|
#include <asm/arch/soc.h>
|
|
|
-#elif defined(CONFIG_SUNXI)
|
|
|
+#elif defined(CONFIG_ARCH_SUNXI)
|
|
|
#include <asm/arch/i2c.h>
|
|
|
#else
|
|
|
#error Driver mvtwsi not supported by SoC or board
|
|
@@ -40,7 +40,7 @@ DECLARE_GLOBAL_DATA_PTR;
|
|
|
* TWSI register structure
|
|
|
*/
|
|
|
|
|
|
-#ifdef CONFIG_SUNXI
|
|
|
+#ifdef CONFIG_ARCH_SUNXI
|
|
|
|
|
|
struct mvtwsi_registers {
|
|
|
u32 slave_address;
|
|
@@ -399,7 +399,7 @@ static int twsi_stop(struct mvtwsi_registers *twsi, uint tick)
|
|
|
*/
|
|
|
static uint twsi_calc_freq(const int n, const int m)
|
|
|
{
|
|
|
-#ifdef CONFIG_SUNXI
|
|
|
+#ifdef CONFIG_ARCH_SUNXI
|
|
|
return CONFIG_SYS_TCLK / (10 * (m + 1) * (1 << n));
|
|
|
#else
|
|
|
return CONFIG_SYS_TCLK / (10 * (m + 1) * (2 << n));
|