Re: [Rt2400-devel] [PATCH] jiffies_round -> jiffies_round_relative conversion - rt2x00

2007-10-15 Thread Ivo van Doorn
On Monday 15 October 2007, Anton Blanchard wrote:
> 
> When rounding a relative timeout we need to use round_jiffies_relative(). 
> 
> Signed-off-by: Anton Blanchard <[EMAIL PROTECTED]>
Acked-by: Ivo van Doorn <[EMAIL PROTECTED]>

> ---
> 
> diff --git a/drivers/net/wireless/rt2x00/rt2x00lib.h 
> b/drivers/net/wireless/rt2x00/rt2x00lib.h
> index 298faa9..06d9bc0 100644
> --- a/drivers/net/wireless/rt2x00/rt2x00lib.h
> +++ b/drivers/net/wireless/rt2x00/rt2x00lib.h
> @@ -30,7 +30,7 @@
>   * Interval defines
>   * Both the link tuner as the rfkill will be called once per second.
>   */
> -#define LINK_TUNE_INTERVAL   ( round_jiffies(HZ) )
> +#define LINK_TUNE_INTERVAL   ( round_jiffies_relative(HZ) )
>  #define RFKILL_POLL_INTERVAL ( 1000 )
>  
>  /*
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >> http://get.splunk.com/
> ___
> Rt2400-devel mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/rt2400-devel
> 


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] jiffies_round -> jiffies_round_relative conversion - rt2x00

2007-10-15 Thread Arjan van de Ven
On Mon, 15 Oct 2007 00:40:34 -0500
Anton Blanchard <[EMAIL PROTECTED]> wrote:

> 
> When rounding a relative timeout we need to use
> round_jiffies_relative(). 
> 
> Signed-off-by: Anton Blanchard <[EMAIL PROTECTED]>

Acked-by: Arjan van de Ven <[EMAIL PROTECTED]>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] jiffies_round - jiffies_round_relative conversion - rt2x00

2007-10-15 Thread Arjan van de Ven
On Mon, 15 Oct 2007 00:40:34 -0500
Anton Blanchard [EMAIL PROTECTED] wrote:

 
 When rounding a relative timeout we need to use
 round_jiffies_relative(). 
 
 Signed-off-by: Anton Blanchard [EMAIL PROTECTED]

Acked-by: Arjan van de Ven [EMAIL PROTECTED]
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Rt2400-devel] [PATCH] jiffies_round - jiffies_round_relative conversion - rt2x00

2007-10-15 Thread Ivo van Doorn
On Monday 15 October 2007, Anton Blanchard wrote:
 
 When rounding a relative timeout we need to use round_jiffies_relative(). 
 
 Signed-off-by: Anton Blanchard [EMAIL PROTECTED]
Acked-by: Ivo van Doorn [EMAIL PROTECTED]

 ---
 
 diff --git a/drivers/net/wireless/rt2x00/rt2x00lib.h 
 b/drivers/net/wireless/rt2x00/rt2x00lib.h
 index 298faa9..06d9bc0 100644
 --- a/drivers/net/wireless/rt2x00/rt2x00lib.h
 +++ b/drivers/net/wireless/rt2x00/rt2x00lib.h
 @@ -30,7 +30,7 @@
   * Interval defines
   * Both the link tuner as the rfkill will be called once per second.
   */
 -#define LINK_TUNE_INTERVAL   ( round_jiffies(HZ) )
 +#define LINK_TUNE_INTERVAL   ( round_jiffies_relative(HZ) )
  #define RFKILL_POLL_INTERVAL ( 1000 )
  
  /*
 
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now  http://get.splunk.com/
 ___
 Rt2400-devel mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/rt2400-devel
 


-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] jiffies_round -> jiffies_round_relative conversion - rt2x00

2007-10-14 Thread Anton Blanchard

When rounding a relative timeout we need to use round_jiffies_relative(). 

Signed-off-by: Anton Blanchard <[EMAIL PROTECTED]>
---

diff --git a/drivers/net/wireless/rt2x00/rt2x00lib.h 
b/drivers/net/wireless/rt2x00/rt2x00lib.h
index 298faa9..06d9bc0 100644
--- a/drivers/net/wireless/rt2x00/rt2x00lib.h
+++ b/drivers/net/wireless/rt2x00/rt2x00lib.h
@@ -30,7 +30,7 @@
  * Interval defines
  * Both the link tuner as the rfkill will be called once per second.
  */
-#define LINK_TUNE_INTERVAL ( round_jiffies(HZ) )
+#define LINK_TUNE_INTERVAL ( round_jiffies_relative(HZ) )
 #define RFKILL_POLL_INTERVAL   ( 1000 )
 
 /*
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] jiffies_round - jiffies_round_relative conversion - rt2x00

2007-10-14 Thread Anton Blanchard

When rounding a relative timeout we need to use round_jiffies_relative(). 

Signed-off-by: Anton Blanchard [EMAIL PROTECTED]
---

diff --git a/drivers/net/wireless/rt2x00/rt2x00lib.h 
b/drivers/net/wireless/rt2x00/rt2x00lib.h
index 298faa9..06d9bc0 100644
--- a/drivers/net/wireless/rt2x00/rt2x00lib.h
+++ b/drivers/net/wireless/rt2x00/rt2x00lib.h
@@ -30,7 +30,7 @@
  * Interval defines
  * Both the link tuner as the rfkill will be called once per second.
  */
-#define LINK_TUNE_INTERVAL ( round_jiffies(HZ) )
+#define LINK_TUNE_INTERVAL ( round_jiffies_relative(HZ) )
 #define RFKILL_POLL_INTERVAL   ( 1000 )
 
 /*
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/