From 716004de5452248a83c660ed2181df3b95d82824 Mon Sep 17 00:00:00 2001 From: Thomas Ingleby Date: Wed, 21 May 2014 17:05:58 +0100 Subject: [PATCH] intel_galileo_rev_d: fix i2c bus definition * Worked before just wasnt quite correct. As SCL SDA share a * mux on the rev d. Signed-off-by: Thomas Ingleby --- src/intel_galileo_rev_d.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/intel_galileo_rev_d.c b/src/intel_galileo_rev_d.c index 57e429b..9dc4dd9 100644 --- a/src/intel_galileo_rev_d.c +++ b/src/intel_galileo_rev_d.c @@ -259,8 +259,8 @@ maa_intel_galileo_rev_d() b->i2c_bus_count = 1; b->def_i2c_bus = 0; b->i2c_bus[0].bus_id = 0; - b->i2c_bus[0].sda = 17; - b->i2c_bus[0].scl = 18; + b->i2c_bus[0].sda = 18; + b->i2c_bus[0].scl = 19; b->spi_bus_count = 1; b->def_spi_bus = 0;