Skip to content
Snippets Groups Projects
Commit bd9dd73c authored by Nicholas Mc Guire's avatar Nicholas Mc Guire Committed by Wolfram Sang
Browse files

i2c: wmt: use msecs_to_jiffies for time conversions


This is only an API consolidation and should make things more readable
it replaces var * HZ / 1000 by msecs_to_jiffies(var).

Signed-off-by: default avatarNicholas Mc Guire <hofrat@osadl.org>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent 6973a39c
No related branches found
No related tags found
No related merge requests found
...@@ -177,7 +177,7 @@ static int wmt_i2c_write(struct i2c_adapter *adap, struct i2c_msg *pmsg, ...@@ -177,7 +177,7 @@ static int wmt_i2c_write(struct i2c_adapter *adap, struct i2c_msg *pmsg,
while (xfer_len < pmsg->len) { while (xfer_len < pmsg->len) {
wait_result = wait_for_completion_timeout(&i2c_dev->complete, wait_result = wait_for_completion_timeout(&i2c_dev->complete,
500 * HZ / 1000); msecs_to_jiffies(500));
if (wait_result == 0) if (wait_result == 0)
return -ETIMEDOUT; return -ETIMEDOUT;
...@@ -266,7 +266,7 @@ static int wmt_i2c_read(struct i2c_adapter *adap, struct i2c_msg *pmsg, ...@@ -266,7 +266,7 @@ static int wmt_i2c_read(struct i2c_adapter *adap, struct i2c_msg *pmsg,
while (xfer_len < pmsg->len) { while (xfer_len < pmsg->len) {
wait_result = wait_for_completion_timeout(&i2c_dev->complete, wait_result = wait_for_completion_timeout(&i2c_dev->complete,
500 * HZ / 1000); msecs_to_jiffies(500));
if (!wait_result) if (!wait_result)
return -ETIMEDOUT; return -ETIMEDOUT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment