Skip to content

Commit

Permalink
i2c: uniphier: fix typos in error messages
Browse files Browse the repository at this point in the history
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
  • Loading branch information
Masahiro Yamada authored and Wolfram Sang committed Feb 12, 2016
1 parent e6244de commit bca71ba
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/i2c/busses/i2c-uniphier-f.c
Original file line number Diff line number Diff line change
@@ -467,7 +467,7 @@ static int uniphier_fi2c_clk_init(struct device *dev,
bus_speed = UNIPHIER_FI2C_DEFAULT_SPEED;

if (!bus_speed) {
dev_err(dev, "clock-freqyency should not be zero\n");
dev_err(dev, "clock-frequency should not be zero\n");
return -EINVAL;
}

2 changes: 1 addition & 1 deletion drivers/i2c/busses/i2c-uniphier.c
Original file line number Diff line number Diff line change
@@ -328,7 +328,7 @@ static int uniphier_i2c_clk_init(struct device *dev,
bus_speed = UNIPHIER_I2C_DEFAULT_SPEED;

if (!bus_speed) {
dev_err(dev, "clock-freqyency should not be zero\n");
dev_err(dev, "clock-frequency should not be zero\n");
return -EINVAL;
}

0 comments on commit bca71ba

Please sign in to comment.