Re: [PATCH] FBTFT: Changed delay function.

2019-11-03 Thread Greg KH
On Sun, Nov 03, 2019 at 09:40:03AM -0600, Rama Kumar wrote: > > Hi, > > Changed udelay() to usleep_range() based on the document in the path, > "Documentation/timers/timers-howto.rst". It was suggested to use > usleep_range() function for sleeping duration between 10us - 20 ms. original >

[PATCH] FBTFT: Changed delay function.

2019-11-03 Thread Rama Kumar
Hi, Changed udelay() to usleep_range() based on the document in the path, "Documentation/timers/timers-howto.rst". It was suggested to use usleep_range() function for sleeping duration between 10us - 20 ms. original code used udelay() for sleeping 20 us. ---