diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-12-29 17:27:33 -0500 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2017-01-12 14:24:43 -0500 |
commit | 2659161dd40dbb599a19f320164373093df44a89 (patch) | |
tree | c994084a988ff4b960795b56c45134fc9c02ab30 | |
parent | 6f724fb3039522486fce2e32e4c0fbe238a6ab02 (diff) |
i2c: fix spelling mistake: "insufficent" -> "insufficient"
Trivial fix to spelling mistake in WARN message, insufficient has
an insufficient number of i's in the spelling.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
-rw-r--r-- | drivers/i2c/i2c-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index c26296c2eac5..583e95042a21 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c/i2c-core.c | |||
@@ -3632,7 +3632,7 @@ int i2c_slave_register(struct i2c_client *client, i2c_slave_cb_t slave_cb) | |||
3632 | int ret; | 3632 | int ret; |
3633 | 3633 | ||
3634 | if (!client || !slave_cb) { | 3634 | if (!client || !slave_cb) { |
3635 | WARN(1, "insufficent data\n"); | 3635 | WARN(1, "insufficient data\n"); |
3636 | return -EINVAL; | 3636 | return -EINVAL; |
3637 | } | 3637 | } |
3638 | 3638 | ||