From 6c7cbd32d36a5ce22b2257b2f72baab80cd4483f Mon Sep 17 00:00:00 2001 From: Minkyu Kang Date: Thu, 2 Jul 2015 10:27:48 +0900 Subject: arm: adds the status info for odroid-xu3 Adds the 'F:' entry for the board's defconfig Signed-off-by: Minkyu Kang diff --git a/board/samsung/smdk5420/MAINTAINERS b/board/samsung/smdk5420/MAINTAINERS index a26ea68..0361657 100644 --- a/board/samsung/smdk5420/MAINTAINERS +++ b/board/samsung/smdk5420/MAINTAINERS @@ -14,3 +14,4 @@ M: Przemyslaw Marczak S: Maintained F: board/samsung/smdk5420/ F: include/configs/odroid_xu3.h +F: configs/odroid-xu3_defconfig -- cgit v0.10.2 From 8fd3ec770c41115b95ca80f0f0ba344ac59dc293 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 2 Jul 2015 18:15:44 -0600 Subject: exynos: i2c: Correct bug in pinmux selection When driver model is not used the current code does not correctly select the pinmux for the I2C bus. This bug was introduced by this commit: 8dfcbaa dm: i2c: s3c24x0: adjust to dm-i2c api Signed-off-by: Simon Glass Acked-by: Heiko Schocher Reviewed-by: Przemyslaw Marczak Signed-off-by: Minkyu Kang diff --git a/drivers/i2c/s3c24x0_i2c.c b/drivers/i2c/s3c24x0_i2c.c index c053e84..9a04e48 100644 --- a/drivers/i2c/s3c24x0_i2c.c +++ b/drivers/i2c/s3c24x0_i2c.c @@ -1035,7 +1035,7 @@ static void process_nodes(const void *blob, int node_list[], int count, CONFIG_SYS_I2C_S3C24X0_SPEED); bus->node = node; bus->bus_num = i; - exynos_pinmux_config(PERIPH_ID_I2C0 + bus->id, flags); + exynos_pinmux_config(bus->id, flags); /* Mark position as used */ node_list[i] = -1; -- cgit v0.10.2