linux-tegra.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] staging: nvec: udelay to usleep_range
@ 2023-06-25 18:51 Uros Milojkovic
  0 siblings, 0 replies; 4+ messages in thread
From: Uros Milojkovic @ 2023-06-25 18:51 UTC (permalink / raw)
  To: p.zabel, ac100, linux-tegra, linux-staging, linux-kernel

Checkpatch.pl alerted that usleep_range is preferred to udelay. This
change was made in nvec.c file.

Signed-off-by: umilojkovic <uroshm@gmail.com>
---
 drivers/staging/nvec/nvec.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
index 2823cacde130..8bb3b691d1f5 100644
--- a/drivers/staging/nvec/nvec.c
+++ b/drivers/staging/nvec/nvec.c
@@ -627,7 +627,7 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
         break;
     case 2:        /* first byte after command */
         if (status == (I2C_SL_IRQ | RNW | RCVD)) {
-            udelay(33);
+            usleep_range(33, 200);
             if (nvec->rx->data[0] != 0x01) {
                 dev_err(nvec->dev,
                     "Read without prior read command\n");
@@ -714,7 +714,7 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
      * We experience less incomplete messages with this delay than without
      * it, but we don't know why. Help is appreciated.
      */
-    udelay(100);
+    usleep_range(100, 200);

     return IRQ_HANDLED;
 }
-- 
2.34.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [PATCH] staging: nvec: udelay to usleep_range
@ 2023-06-25 18:55 Uros Milojkovic
  2023-06-26  6:09 ` Greg KH
  2023-06-26 13:01 ` Dan Carpenter
  0 siblings, 2 replies; 4+ messages in thread
From: Uros Milojkovic @ 2023-06-25 18:55 UTC (permalink / raw)
  To: linux-kernel, marvin24, p.zabel, linux-tegra, linux-staging

Checkpatch pl alerts that usleep_range is preferred to udelay. The
change is made.
Signed-off-by: umilojkovic <uroshm@gmail.com>
---
 drivers/staging/nvec/nvec.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
index 2823cacde130..8bb3b691d1f5 100644
--- a/drivers/staging/nvec/nvec.c
+++ b/drivers/staging/nvec/nvec.c
@@ -627,7 +627,7 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
         break;
     case 2:        /* first byte after command */
         if (status == (I2C_SL_IRQ | RNW | RCVD)) {
-            udelay(33);
+            usleep_range(33, 200);
             if (nvec->rx->data[0] != 0x01) {
                 dev_err(nvec->dev,
                     "Read without prior read command\n");
@@ -714,7 +714,7 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
      * We experience less incomplete messages with this delay than without
      * it, but we don't know why. Help is appreciated.
      */
-    udelay(100);
+    usleep_range(100, 200);

     return IRQ_HANDLED;
 }
-- 
2.34.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-06-26 13:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-25 18:51 [PATCH] staging: nvec: udelay to usleep_range Uros Milojkovic
2023-06-25 18:55 Uros Milojkovic
2023-06-26  6:09 ` Greg KH
2023-06-26 13:01 ` Dan Carpenter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).