projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
523943d
)
universal: request soft i2c gpio
author
Przemyslaw Marczak
<p.marczak@samsung.com>
Fri, 24 Oct 2014 15:45:03 +0000
(17:45 +0200)
committer
Simon Glass
<sjg@chromium.org>
Tue, 28 Oct 2014 01:21:07 +0000
(19:21 -0600)
Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Acked-by: Simon Glass <sjg@chromium.org>
board/samsung/universal_c210/universal.c
patch
|
blob
|
history
diff --git
a/board/samsung/universal_c210/universal.c
b/board/samsung/universal_c210/universal.c
index
22b0849
..
df46713
100644
(file)
--- a/
board/samsung/universal_c210/universal.c
+++ b/
board/samsung/universal_c210/universal.c
@@
-328,6
+328,8
@@
void exynos_enable_ldo(unsigned int onoff)
int exynos_init(void)
{
+ char buf[16];
+
gd->bd->bi_arch_number = MACH_TYPE_UNIVERSAL_C210;
switch (get_hwrev()) {
@@
-352,6
+354,13
@@
int exynos_init(void)
break;
}
+ /* Request soft I2C gpios */
+ sprintf(buf, "soft_i2c_scl");
+ gpio_request(CONFIG_SOFT_I2C_GPIO_SCL, buf);
+
+ sprintf(buf, "soft_i2c_sda");
+ gpio_request(CONFIG_SOFT_I2C_GPIO_SDA, buf);
+
check_hw_revision();
printf("HW Revision:\t0x%x\n", board_rev);