Re: [PATCH] drivers/net: Fix potential incorrect call for udelay()

2013-12-23 Thread tingwei liu
On Mon, Dec 23, 2013 at 5:33 PM, Libin wrote: > > From: Li Bin > > The variable delay_time as a module parameter can be set a value > exceeding the limit of the udelay function. This patch checks the > delay_time value to select mdelay() or udelay(). > > Signed-off-by: Li Bin > --- > drivers/ne

Re: [PATCH] drivers/net: Fix potential incorrect call for udelay()

2013-12-23 Thread One Thousand Gnomes
On Mon, 23 Dec 2013 17:33:44 +0800 Libin wrote: > From: Li Bin > > The variable delay_time as a module parameter can be set a value > exceeding the limit of the udelay function. This patch checks the > delay_time value to select mdelay() or udelay(). > > Signed-off-by: Li Bin Nobody should n

[PATCH] drivers/net: Fix potential incorrect call for udelay()

2013-12-23 Thread Libin
From: Li Bin The variable delay_time as a module parameter can be set a value exceeding the limit of the udelay function. This patch checks the delay_time value to select mdelay() or udelay(). Signed-off-by: Li Bin --- drivers/net/ethernet/8390/pcnet_cs.c | 8 ++-- 1 file changed, 6 insert