diff mbox

[U-Boot,2/2] i2c: Correct spelling error

Message ID 1417463359-3796-2-git-send-email-mark.tomlinson@alliedtelesis.co.nz
State Awaiting Upstream
Delegated to: Heiko Schocher
Headers show

Commit Message

Mark Tomlinson Dec. 1, 2014, 7:49 p.m. UTC
"diconnect" and "disconnet" should both be "disconnect".

Signed-off-by: Mark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>
---
 drivers/i2c/i2c_core.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Chris Packham Dec. 3, 2014, 7:36 a.m. UTC | #1
This one too.

On Tue, Dec 2, 2014 at 8:49 AM, Mark Tomlinson
<mark.tomlinson@alliedtelesis.co.nz> wrote:
> "diconnect" and "disconnet" should both be "disconnect".
>
> Signed-off-by: Mark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>
> ---
>  drivers/i2c/i2c_core.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/i2c/i2c_core.c b/drivers/i2c/i2c_core.c
> index 4539667..41cc3b8 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;
> --
> 1.9.1
>
> _______________________________________________
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
diff mbox

Patch

diff --git a/drivers/i2c/i2c_core.c b/drivers/i2c/i2c_core.c
index 4539667..41cc3b8 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;