summaryrefslogtreecommitdiffstats
path: root/drivers/i2c/i2c_core.c
diff options
context:
space:
mode:
authorMark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>2014-12-02 08:49:19 +1300
committerHeiko Schocher <hs@denx.de>2014-12-08 07:27:22 +0100
commitf4ed36964a7ab4e729d62e96dac15a674dcc2668 (patch)
tree3712df95f1d510840e193ad61f014fce29884765 /drivers/i2c/i2c_core.c
parent2fe50ef4034b69b45413108dd3e736de2548c04a (diff)
downloadblackbird-obmc-uboot-f4ed36964a7ab4e729d62e96dac15a674dcc2668.tar.gz
blackbird-obmc-uboot-f4ed36964a7ab4e729d62e96dac15a674dcc2668.zip
i2c: Correct spelling error
"diconnect" and "disconnet" should both be "disconnect". Signed-off-by: Mark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>
Diffstat (limited to 'drivers/i2c/i2c_core.c')
-rw-r--r--drivers/i2c/i2c_core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/i2c/i2c_core.c b/drivers/i2c/i2c_core.c
index 4539667eae..41cc3b8fa4 100644
--- a/drivers/i2c/i2c_core.c
+++ b/drivers/i2c/i2c_core.c
@@ -174,7 +174,7 @@ static int i2c_mux_set_all(void)
return 0;
}
-static int i2c_mux_disconnet_all(void)
+static int i2c_mux_disconnect_all(void)
{
struct i2c_bus_hose *i2c_bus_tmp = &i2c_bus[I2C_BUS];
int i;
@@ -197,7 +197,7 @@ static int i2c_mux_disconnet_all(void)
ret = I2C_ADAP->write(I2C_ADAP, chip, 0, 0, &buf, 1);
if (ret != 0) {
- printf("i2c: mux diconnect error\n");
+ printf("i2c: mux disconnect error\n");
return ret;
}
} while (i > 0);
@@ -293,7 +293,7 @@ int i2c_set_bus_num(unsigned int bus)
}
#ifndef CONFIG_SYS_I2C_DIRECT_BUS
- i2c_mux_disconnet_all();
+ i2c_mux_disconnect_all();
#endif
gd->cur_i2c_bus = bus;
OpenPOWER on IntegriCloud