All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: OMAP2+: Remove duplicate definition of omap_test_timeout
@ 2017-01-20 18:51 ` Tony Lindgren
  0 siblings, 0 replies; 10+ messages in thread
From: Tony Lindgren @ 2017-01-20 18:51 UTC (permalink / raw)
  To: linux-omap; +Cc: linux-arm-kernel

We have the same defined already in common.h.

Signed-off-by: Tony Lindgren <tony@atomide.com>
---
 arch/arm/mach-omap2/cm2xxx.c                |  1 +
 arch/arm/mach-omap2/cm33xx.c                |  1 +
 arch/arm/mach-omap2/cm3xxx.c                |  1 +
 arch/arm/mach-omap2/cminst44xx.c            |  1 +
 arch/arm/mach-omap2/powerdomains3xxx_data.c |  1 +
 arch/arm/mach-omap2/prcm-common.h           | 22 ----------------------
 arch/arm/mach-omap2/prm2xxx_3xxx.c          |  1 +
 arch/arm/mach-omap2/prm33xx.c               |  1 +
 8 files changed, 7 insertions(+), 22 deletions(-)

diff --git a/arch/arm/mach-omap2/cm2xxx.c b/arch/arm/mach-omap2/cm2xxx.c
--- a/arch/arm/mach-omap2/cm2xxx.c
+++ b/arch/arm/mach-omap2/cm2xxx.c
@@ -18,6 +18,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "prm2xxx.h"
 #include "cm.h"
 #include "cm2xxx.h"
diff --git a/arch/arm/mach-omap2/cm33xx.c b/arch/arm/mach-omap2/cm33xx.c
--- a/arch/arm/mach-omap2/cm33xx.c
+++ b/arch/arm/mach-omap2/cm33xx.c
@@ -22,6 +22,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "clockdomain.h"
 #include "cm.h"
 #include "cm33xx.h"
diff --git a/arch/arm/mach-omap2/cm3xxx.c b/arch/arm/mach-omap2/cm3xxx.c
--- a/arch/arm/mach-omap2/cm3xxx.c
+++ b/arch/arm/mach-omap2/cm3xxx.c
@@ -18,6 +18,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "prm2xxx_3xxx.h"
 #include "cm.h"
 #include "cm3xxx.h"
diff --git a/arch/arm/mach-omap2/cminst44xx.c b/arch/arm/mach-omap2/cminst44xx.c
--- a/arch/arm/mach-omap2/cminst44xx.c
+++ b/arch/arm/mach-omap2/cminst44xx.c
@@ -21,6 +21,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "clockdomain.h"
 #include "cm.h"
 #include "cm1_44xx.h"
diff --git a/arch/arm/mach-omap2/powerdomains3xxx_data.c b/arch/arm/mach-omap2/powerdomains3xxx_data.c
--- a/arch/arm/mach-omap2/powerdomains3xxx_data.c
+++ b/arch/arm/mach-omap2/powerdomains3xxx_data.c
@@ -14,6 +14,7 @@
 #include <linux/kernel.h>
 #include <linux/init.h>
 #include <linux/bug.h>
+#include <linux/delay.h>
 
 #include "soc.h"
 #include "powerdomain.h"
diff --git a/arch/arm/mach-omap2/prcm-common.h b/arch/arm/mach-omap2/prcm-common.h
--- a/arch/arm/mach-omap2/prcm-common.h
+++ b/arch/arm/mach-omap2/prcm-common.h
@@ -434,28 +434,6 @@
 #define MAX_IOPAD_LATCH_TIME			100
 # ifndef __ASSEMBLER__
 
-#include <linux/delay.h>
-
-/**
- * omap_test_timeout - busy-loop, testing a condition
- * @cond: condition to test until it evaluates to true
- * @timeout: maximum number of microseconds in the timeout
- * @index: loop index (integer)
- *
- * Loop waiting for @cond to become true or until at least @timeout
- * microseconds have passed.  To use, define some integer @index in the
- * calling code.  After running, if @index == @timeout, then the loop has
- * timed out.
- */
-#define omap_test_timeout(cond, timeout, index)			\
-({								\
-	for (index = 0; index < timeout; index++) {		\
-		if (cond)					\
-			break;					\
-		udelay(1);					\
-	}							\
-})
-
 /**
  * struct omap_prcm_irq - describes a PRCM interrupt bit
  * @name: a short name describing the interrupt type, e.g. "wkup" or "io"
diff --git a/arch/arm/mach-omap2/prm2xxx_3xxx.c b/arch/arm/mach-omap2/prm2xxx_3xxx.c
--- a/arch/arm/mach-omap2/prm2xxx_3xxx.c
+++ b/arch/arm/mach-omap2/prm2xxx_3xxx.c
@@ -16,6 +16,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "powerdomain.h"
 #include "prm2xxx_3xxx.h"
 #include "prm-regbits-24xx.h"
diff --git a/arch/arm/mach-omap2/prm33xx.c b/arch/arm/mach-omap2/prm33xx.c
--- a/arch/arm/mach-omap2/prm33xx.c
+++ b/arch/arm/mach-omap2/prm33xx.c
@@ -19,6 +19,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "powerdomain.h"
 #include "prm33xx.h"
 #include "prm-regbits-33xx.h"
-- 
2.11.0

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

* [PATCH] ARM: OMAP2+: Remove duplicate definition of omap_test_timeout
@ 2017-01-20 18:51 ` Tony Lindgren
  0 siblings, 0 replies; 10+ messages in thread
From: Tony Lindgren @ 2017-01-20 18:51 UTC (permalink / raw)
  To: linux-arm-kernel

We have the same defined already in common.h.

Signed-off-by: Tony Lindgren <tony@atomide.com>
---
 arch/arm/mach-omap2/cm2xxx.c                |  1 +
 arch/arm/mach-omap2/cm33xx.c                |  1 +
 arch/arm/mach-omap2/cm3xxx.c                |  1 +
 arch/arm/mach-omap2/cminst44xx.c            |  1 +
 arch/arm/mach-omap2/powerdomains3xxx_data.c |  1 +
 arch/arm/mach-omap2/prcm-common.h           | 22 ----------------------
 arch/arm/mach-omap2/prm2xxx_3xxx.c          |  1 +
 arch/arm/mach-omap2/prm33xx.c               |  1 +
 8 files changed, 7 insertions(+), 22 deletions(-)

diff --git a/arch/arm/mach-omap2/cm2xxx.c b/arch/arm/mach-omap2/cm2xxx.c
--- a/arch/arm/mach-omap2/cm2xxx.c
+++ b/arch/arm/mach-omap2/cm2xxx.c
@@ -18,6 +18,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "prm2xxx.h"
 #include "cm.h"
 #include "cm2xxx.h"
diff --git a/arch/arm/mach-omap2/cm33xx.c b/arch/arm/mach-omap2/cm33xx.c
--- a/arch/arm/mach-omap2/cm33xx.c
+++ b/arch/arm/mach-omap2/cm33xx.c
@@ -22,6 +22,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "clockdomain.h"
 #include "cm.h"
 #include "cm33xx.h"
diff --git a/arch/arm/mach-omap2/cm3xxx.c b/arch/arm/mach-omap2/cm3xxx.c
--- a/arch/arm/mach-omap2/cm3xxx.c
+++ b/arch/arm/mach-omap2/cm3xxx.c
@@ -18,6 +18,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "prm2xxx_3xxx.h"
 #include "cm.h"
 #include "cm3xxx.h"
diff --git a/arch/arm/mach-omap2/cminst44xx.c b/arch/arm/mach-omap2/cminst44xx.c
--- a/arch/arm/mach-omap2/cminst44xx.c
+++ b/arch/arm/mach-omap2/cminst44xx.c
@@ -21,6 +21,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "clockdomain.h"
 #include "cm.h"
 #include "cm1_44xx.h"
diff --git a/arch/arm/mach-omap2/powerdomains3xxx_data.c b/arch/arm/mach-omap2/powerdomains3xxx_data.c
--- a/arch/arm/mach-omap2/powerdomains3xxx_data.c
+++ b/arch/arm/mach-omap2/powerdomains3xxx_data.c
@@ -14,6 +14,7 @@
 #include <linux/kernel.h>
 #include <linux/init.h>
 #include <linux/bug.h>
+#include <linux/delay.h>
 
 #include "soc.h"
 #include "powerdomain.h"
diff --git a/arch/arm/mach-omap2/prcm-common.h b/arch/arm/mach-omap2/prcm-common.h
--- a/arch/arm/mach-omap2/prcm-common.h
+++ b/arch/arm/mach-omap2/prcm-common.h
@@ -434,28 +434,6 @@
 #define MAX_IOPAD_LATCH_TIME			100
 # ifndef __ASSEMBLER__
 
-#include <linux/delay.h>
-
-/**
- * omap_test_timeout - busy-loop, testing a condition
- * @cond: condition to test until it evaluates to true
- * @timeout: maximum number of microseconds in the timeout
- * @index: loop index (integer)
- *
- * Loop waiting for @cond to become true or until at least @timeout
- * microseconds have passed.  To use, define some integer @index in the
- * calling code.  After running, if @index == @timeout, then the loop has
- * timed out.
- */
-#define omap_test_timeout(cond, timeout, index)			\
-({								\
-	for (index = 0; index < timeout; index++) {		\
-		if (cond)					\
-			break;					\
-		udelay(1);					\
-	}							\
-})
-
 /**
  * struct omap_prcm_irq - describes a PRCM interrupt bit
  * @name: a short name describing the interrupt type, e.g. "wkup" or "io"
diff --git a/arch/arm/mach-omap2/prm2xxx_3xxx.c b/arch/arm/mach-omap2/prm2xxx_3xxx.c
--- a/arch/arm/mach-omap2/prm2xxx_3xxx.c
+++ b/arch/arm/mach-omap2/prm2xxx_3xxx.c
@@ -16,6 +16,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "powerdomain.h"
 #include "prm2xxx_3xxx.h"
 #include "prm-regbits-24xx.h"
diff --git a/arch/arm/mach-omap2/prm33xx.c b/arch/arm/mach-omap2/prm33xx.c
--- a/arch/arm/mach-omap2/prm33xx.c
+++ b/arch/arm/mach-omap2/prm33xx.c
@@ -19,6 +19,7 @@
 #include <linux/err.h>
 #include <linux/io.h>
 
+#include "common.h"
 #include "powerdomain.h"
 #include "prm33xx.h"
 #include "prm-regbits-33xx.h"
-- 
2.11.0

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

* Re: [PATCH] ARM: OMAP2+: Remove duplicate definition of omap_test_timeout
  2017-01-20 18:51 ` Tony Lindgren
@ 2017-01-23 10:22   ` Lokesh Vutla
  -1 siblings, 0 replies; 10+ messages in thread
From: Lokesh Vutla @ 2017-01-23 10:22 UTC (permalink / raw)
  To: Tony Lindgren, linux-omap, Tero Kristo; +Cc: linux-arm-kernel

+ Tero,

On Saturday 21 January 2017 12:21 AM, Tony Lindgren wrote:
> We have the same defined already in common.h.


This is reverting what has been introduced in this[1] series. Probably
Tero can comment more here.

[1] http://www.mail-archive.com/linux-omap@vger.kernel.org/msg102131.html

Thanks and regards,
Lokesh

> 
> Signed-off-by: Tony Lindgren <tony@atomide.com>
> ---
>  arch/arm/mach-omap2/cm2xxx.c                |  1 +
>  arch/arm/mach-omap2/cm33xx.c                |  1 +
>  arch/arm/mach-omap2/cm3xxx.c                |  1 +
>  arch/arm/mach-omap2/cminst44xx.c            |  1 +
>  arch/arm/mach-omap2/powerdomains3xxx_data.c |  1 +
>  arch/arm/mach-omap2/prcm-common.h           | 22 ----------------------
>  arch/arm/mach-omap2/prm2xxx_3xxx.c          |  1 +
>  arch/arm/mach-omap2/prm33xx.c               |  1 +
>  8 files changed, 7 insertions(+), 22 deletions(-)
> 
> diff --git a/arch/arm/mach-omap2/cm2xxx.c b/arch/arm/mach-omap2/cm2xxx.c
> --- a/arch/arm/mach-omap2/cm2xxx.c
> +++ b/arch/arm/mach-omap2/cm2xxx.c
> @@ -18,6 +18,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "prm2xxx.h"
>  #include "cm.h"
>  #include "cm2xxx.h"
> diff --git a/arch/arm/mach-omap2/cm33xx.c b/arch/arm/mach-omap2/cm33xx.c
> --- a/arch/arm/mach-omap2/cm33xx.c
> +++ b/arch/arm/mach-omap2/cm33xx.c
> @@ -22,6 +22,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "clockdomain.h"
>  #include "cm.h"
>  #include "cm33xx.h"
> diff --git a/arch/arm/mach-omap2/cm3xxx.c b/arch/arm/mach-omap2/cm3xxx.c
> --- a/arch/arm/mach-omap2/cm3xxx.c
> +++ b/arch/arm/mach-omap2/cm3xxx.c
> @@ -18,6 +18,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "prm2xxx_3xxx.h"
>  #include "cm.h"
>  #include "cm3xxx.h"
> diff --git a/arch/arm/mach-omap2/cminst44xx.c b/arch/arm/mach-omap2/cminst44xx.c
> --- a/arch/arm/mach-omap2/cminst44xx.c
> +++ b/arch/arm/mach-omap2/cminst44xx.c
> @@ -21,6 +21,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "clockdomain.h"
>  #include "cm.h"
>  #include "cm1_44xx.h"
> diff --git a/arch/arm/mach-omap2/powerdomains3xxx_data.c b/arch/arm/mach-omap2/powerdomains3xxx_data.c
> --- a/arch/arm/mach-omap2/powerdomains3xxx_data.c
> +++ b/arch/arm/mach-omap2/powerdomains3xxx_data.c
> @@ -14,6 +14,7 @@
>  #include <linux/kernel.h>
>  #include <linux/init.h>
>  #include <linux/bug.h>
> +#include <linux/delay.h>
>  
>  #include "soc.h"
>  #include "powerdomain.h"
> diff --git a/arch/arm/mach-omap2/prcm-common.h b/arch/arm/mach-omap2/prcm-common.h
> --- a/arch/arm/mach-omap2/prcm-common.h
> +++ b/arch/arm/mach-omap2/prcm-common.h
> @@ -434,28 +434,6 @@
>  #define MAX_IOPAD_LATCH_TIME			100
>  # ifndef __ASSEMBLER__
>  
> -#include <linux/delay.h>
> -
> -/**
> - * omap_test_timeout - busy-loop, testing a condition
> - * @cond: condition to test until it evaluates to true
> - * @timeout: maximum number of microseconds in the timeout
> - * @index: loop index (integer)
> - *
> - * Loop waiting for @cond to become true or until at least @timeout
> - * microseconds have passed.  To use, define some integer @index in the
> - * calling code.  After running, if @index == @timeout, then the loop has
> - * timed out.
> - */
> -#define omap_test_timeout(cond, timeout, index)			\
> -({								\
> -	for (index = 0; index < timeout; index++) {		\
> -		if (cond)					\
> -			break;					\
> -		udelay(1);					\
> -	}							\
> -})
> -
>  /**
>   * struct omap_prcm_irq - describes a PRCM interrupt bit
>   * @name: a short name describing the interrupt type, e.g. "wkup" or "io"
> diff --git a/arch/arm/mach-omap2/prm2xxx_3xxx.c b/arch/arm/mach-omap2/prm2xxx_3xxx.c
> --- a/arch/arm/mach-omap2/prm2xxx_3xxx.c
> +++ b/arch/arm/mach-omap2/prm2xxx_3xxx.c
> @@ -16,6 +16,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "powerdomain.h"
>  #include "prm2xxx_3xxx.h"
>  #include "prm-regbits-24xx.h"
> diff --git a/arch/arm/mach-omap2/prm33xx.c b/arch/arm/mach-omap2/prm33xx.c
> --- a/arch/arm/mach-omap2/prm33xx.c
> +++ b/arch/arm/mach-omap2/prm33xx.c
> @@ -19,6 +19,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "powerdomain.h"
>  #include "prm33xx.h"
>  #include "prm-regbits-33xx.h"
> 

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

* [PATCH] ARM: OMAP2+: Remove duplicate definition of omap_test_timeout
@ 2017-01-23 10:22   ` Lokesh Vutla
  0 siblings, 0 replies; 10+ messages in thread
From: Lokesh Vutla @ 2017-01-23 10:22 UTC (permalink / raw)
  To: linux-arm-kernel

+ Tero,

On Saturday 21 January 2017 12:21 AM, Tony Lindgren wrote:
> We have the same defined already in common.h.


This is reverting what has been introduced in this[1] series. Probably
Tero can comment more here.

[1] http://www.mail-archive.com/linux-omap at vger.kernel.org/msg102131.html

Thanks and regards,
Lokesh

> 
> Signed-off-by: Tony Lindgren <tony@atomide.com>
> ---
>  arch/arm/mach-omap2/cm2xxx.c                |  1 +
>  arch/arm/mach-omap2/cm33xx.c                |  1 +
>  arch/arm/mach-omap2/cm3xxx.c                |  1 +
>  arch/arm/mach-omap2/cminst44xx.c            |  1 +
>  arch/arm/mach-omap2/powerdomains3xxx_data.c |  1 +
>  arch/arm/mach-omap2/prcm-common.h           | 22 ----------------------
>  arch/arm/mach-omap2/prm2xxx_3xxx.c          |  1 +
>  arch/arm/mach-omap2/prm33xx.c               |  1 +
>  8 files changed, 7 insertions(+), 22 deletions(-)
> 
> diff --git a/arch/arm/mach-omap2/cm2xxx.c b/arch/arm/mach-omap2/cm2xxx.c
> --- a/arch/arm/mach-omap2/cm2xxx.c
> +++ b/arch/arm/mach-omap2/cm2xxx.c
> @@ -18,6 +18,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "prm2xxx.h"
>  #include "cm.h"
>  #include "cm2xxx.h"
> diff --git a/arch/arm/mach-omap2/cm33xx.c b/arch/arm/mach-omap2/cm33xx.c
> --- a/arch/arm/mach-omap2/cm33xx.c
> +++ b/arch/arm/mach-omap2/cm33xx.c
> @@ -22,6 +22,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "clockdomain.h"
>  #include "cm.h"
>  #include "cm33xx.h"
> diff --git a/arch/arm/mach-omap2/cm3xxx.c b/arch/arm/mach-omap2/cm3xxx.c
> --- a/arch/arm/mach-omap2/cm3xxx.c
> +++ b/arch/arm/mach-omap2/cm3xxx.c
> @@ -18,6 +18,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "prm2xxx_3xxx.h"
>  #include "cm.h"
>  #include "cm3xxx.h"
> diff --git a/arch/arm/mach-omap2/cminst44xx.c b/arch/arm/mach-omap2/cminst44xx.c
> --- a/arch/arm/mach-omap2/cminst44xx.c
> +++ b/arch/arm/mach-omap2/cminst44xx.c
> @@ -21,6 +21,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "clockdomain.h"
>  #include "cm.h"
>  #include "cm1_44xx.h"
> diff --git a/arch/arm/mach-omap2/powerdomains3xxx_data.c b/arch/arm/mach-omap2/powerdomains3xxx_data.c
> --- a/arch/arm/mach-omap2/powerdomains3xxx_data.c
> +++ b/arch/arm/mach-omap2/powerdomains3xxx_data.c
> @@ -14,6 +14,7 @@
>  #include <linux/kernel.h>
>  #include <linux/init.h>
>  #include <linux/bug.h>
> +#include <linux/delay.h>
>  
>  #include "soc.h"
>  #include "powerdomain.h"
> diff --git a/arch/arm/mach-omap2/prcm-common.h b/arch/arm/mach-omap2/prcm-common.h
> --- a/arch/arm/mach-omap2/prcm-common.h
> +++ b/arch/arm/mach-omap2/prcm-common.h
> @@ -434,28 +434,6 @@
>  #define MAX_IOPAD_LATCH_TIME			100
>  # ifndef __ASSEMBLER__
>  
> -#include <linux/delay.h>
> -
> -/**
> - * omap_test_timeout - busy-loop, testing a condition
> - * @cond: condition to test until it evaluates to true
> - * @timeout: maximum number of microseconds in the timeout
> - * @index: loop index (integer)
> - *
> - * Loop waiting for @cond to become true or until at least @timeout
> - * microseconds have passed.  To use, define some integer @index in the
> - * calling code.  After running, if @index == @timeout, then the loop has
> - * timed out.
> - */
> -#define omap_test_timeout(cond, timeout, index)			\
> -({								\
> -	for (index = 0; index < timeout; index++) {		\
> -		if (cond)					\
> -			break;					\
> -		udelay(1);					\
> -	}							\
> -})
> -
>  /**
>   * struct omap_prcm_irq - describes a PRCM interrupt bit
>   * @name: a short name describing the interrupt type, e.g. "wkup" or "io"
> diff --git a/arch/arm/mach-omap2/prm2xxx_3xxx.c b/arch/arm/mach-omap2/prm2xxx_3xxx.c
> --- a/arch/arm/mach-omap2/prm2xxx_3xxx.c
> +++ b/arch/arm/mach-omap2/prm2xxx_3xxx.c
> @@ -16,6 +16,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "powerdomain.h"
>  #include "prm2xxx_3xxx.h"
>  #include "prm-regbits-24xx.h"
> diff --git a/arch/arm/mach-omap2/prm33xx.c b/arch/arm/mach-omap2/prm33xx.c
> --- a/arch/arm/mach-omap2/prm33xx.c
> +++ b/arch/arm/mach-omap2/prm33xx.c
> @@ -19,6 +19,7 @@
>  #include <linux/err.h>
>  #include <linux/io.h>
>  
> +#include "common.h"
>  #include "powerdomain.h"
>  #include "prm33xx.h"
>  #include "prm-regbits-33xx.h"
> 

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

* Re: [PATCH] ARM: OMAP2+: Remove duplicate definition of omap_test_timeout
  2017-01-23 10:22   ` Lokesh Vutla
@ 2017-01-23 13:43     ` Tero Kristo
  -1 siblings, 0 replies; 10+ messages in thread
From: Tero Kristo @ 2017-01-23 13:43 UTC (permalink / raw)
  To: Lokesh Vutla, Tony Lindgren, linux-omap; +Cc: linux-arm-kernel

On 23/01/17 12:22, Lokesh Vutla wrote:
> + Tero,
>
> On Saturday 21 January 2017 12:21 AM, Tony Lindgren wrote:
>> We have the same defined already in common.h.
>
>
> This is reverting what has been introduced in this[1] series. Probably
> Tero can comment more here.

Yeah, the point of introducing that was to get rid of common.h include 
from the prcm files. See commit 250e27ee950bf67ceeb812eb4c8f2fea58d3e2b6.

-Tero

>
> [1] http://www.mail-archive.com/linux-omap@vger.kernel.org/msg102131.html
>
> Thanks and regards,
> Lokesh
>
>>
>> Signed-off-by: Tony Lindgren <tony@atomide.com>
>> ---
>>  arch/arm/mach-omap2/cm2xxx.c                |  1 +
>>  arch/arm/mach-omap2/cm33xx.c                |  1 +
>>  arch/arm/mach-omap2/cm3xxx.c                |  1 +
>>  arch/arm/mach-omap2/cminst44xx.c            |  1 +
>>  arch/arm/mach-omap2/powerdomains3xxx_data.c |  1 +
>>  arch/arm/mach-omap2/prcm-common.h           | 22 ----------------------
>>  arch/arm/mach-omap2/prm2xxx_3xxx.c          |  1 +
>>  arch/arm/mach-omap2/prm33xx.c               |  1 +
>>  8 files changed, 7 insertions(+), 22 deletions(-)
>>
>> diff --git a/arch/arm/mach-omap2/cm2xxx.c b/arch/arm/mach-omap2/cm2xxx.c
>> --- a/arch/arm/mach-omap2/cm2xxx.c
>> +++ b/arch/arm/mach-omap2/cm2xxx.c
>> @@ -18,6 +18,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "prm2xxx.h"
>>  #include "cm.h"
>>  #include "cm2xxx.h"
>> diff --git a/arch/arm/mach-omap2/cm33xx.c b/arch/arm/mach-omap2/cm33xx.c
>> --- a/arch/arm/mach-omap2/cm33xx.c
>> +++ b/arch/arm/mach-omap2/cm33xx.c
>> @@ -22,6 +22,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "clockdomain.h"
>>  #include "cm.h"
>>  #include "cm33xx.h"
>> diff --git a/arch/arm/mach-omap2/cm3xxx.c b/arch/arm/mach-omap2/cm3xxx.c
>> --- a/arch/arm/mach-omap2/cm3xxx.c
>> +++ b/arch/arm/mach-omap2/cm3xxx.c
>> @@ -18,6 +18,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "prm2xxx_3xxx.h"
>>  #include "cm.h"
>>  #include "cm3xxx.h"
>> diff --git a/arch/arm/mach-omap2/cminst44xx.c b/arch/arm/mach-omap2/cminst44xx.c
>> --- a/arch/arm/mach-omap2/cminst44xx.c
>> +++ b/arch/arm/mach-omap2/cminst44xx.c
>> @@ -21,6 +21,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "clockdomain.h"
>>  #include "cm.h"
>>  #include "cm1_44xx.h"
>> diff --git a/arch/arm/mach-omap2/powerdomains3xxx_data.c b/arch/arm/mach-omap2/powerdomains3xxx_data.c
>> --- a/arch/arm/mach-omap2/powerdomains3xxx_data.c
>> +++ b/arch/arm/mach-omap2/powerdomains3xxx_data.c
>> @@ -14,6 +14,7 @@
>>  #include <linux/kernel.h>
>>  #include <linux/init.h>
>>  #include <linux/bug.h>
>> +#include <linux/delay.h>
>>
>>  #include "soc.h"
>>  #include "powerdomain.h"
>> diff --git a/arch/arm/mach-omap2/prcm-common.h b/arch/arm/mach-omap2/prcm-common.h
>> --- a/arch/arm/mach-omap2/prcm-common.h
>> +++ b/arch/arm/mach-omap2/prcm-common.h
>> @@ -434,28 +434,6 @@
>>  #define MAX_IOPAD_LATCH_TIME			100
>>  # ifndef __ASSEMBLER__
>>
>> -#include <linux/delay.h>
>> -
>> -/**
>> - * omap_test_timeout - busy-loop, testing a condition
>> - * @cond: condition to test until it evaluates to true
>> - * @timeout: maximum number of microseconds in the timeout
>> - * @index: loop index (integer)
>> - *
>> - * Loop waiting for @cond to become true or until at least @timeout
>> - * microseconds have passed.  To use, define some integer @index in the
>> - * calling code.  After running, if @index == @timeout, then the loop has
>> - * timed out.
>> - */
>> -#define omap_test_timeout(cond, timeout, index)			\
>> -({								\
>> -	for (index = 0; index < timeout; index++) {		\
>> -		if (cond)					\
>> -			break;					\
>> -		udelay(1);					\
>> -	}							\
>> -})
>> -
>>  /**
>>   * struct omap_prcm_irq - describes a PRCM interrupt bit
>>   * @name: a short name describing the interrupt type, e.g. "wkup" or "io"
>> diff --git a/arch/arm/mach-omap2/prm2xxx_3xxx.c b/arch/arm/mach-omap2/prm2xxx_3xxx.c
>> --- a/arch/arm/mach-omap2/prm2xxx_3xxx.c
>> +++ b/arch/arm/mach-omap2/prm2xxx_3xxx.c
>> @@ -16,6 +16,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "powerdomain.h"
>>  #include "prm2xxx_3xxx.h"
>>  #include "prm-regbits-24xx.h"
>> diff --git a/arch/arm/mach-omap2/prm33xx.c b/arch/arm/mach-omap2/prm33xx.c
>> --- a/arch/arm/mach-omap2/prm33xx.c
>> +++ b/arch/arm/mach-omap2/prm33xx.c
>> @@ -19,6 +19,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "powerdomain.h"
>>  #include "prm33xx.h"
>>  #include "prm-regbits-33xx.h"
>>

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

* [PATCH] ARM: OMAP2+: Remove duplicate definition of omap_test_timeout
@ 2017-01-23 13:43     ` Tero Kristo
  0 siblings, 0 replies; 10+ messages in thread
From: Tero Kristo @ 2017-01-23 13:43 UTC (permalink / raw)
  To: linux-arm-kernel

On 23/01/17 12:22, Lokesh Vutla wrote:
> + Tero,
>
> On Saturday 21 January 2017 12:21 AM, Tony Lindgren wrote:
>> We have the same defined already in common.h.
>
>
> This is reverting what has been introduced in this[1] series. Probably
> Tero can comment more here.

Yeah, the point of introducing that was to get rid of common.h include 
from the prcm files. See commit 250e27ee950bf67ceeb812eb4c8f2fea58d3e2b6.

-Tero

>
> [1] http://www.mail-archive.com/linux-omap at vger.kernel.org/msg102131.html
>
> Thanks and regards,
> Lokesh
>
>>
>> Signed-off-by: Tony Lindgren <tony@atomide.com>
>> ---
>>  arch/arm/mach-omap2/cm2xxx.c                |  1 +
>>  arch/arm/mach-omap2/cm33xx.c                |  1 +
>>  arch/arm/mach-omap2/cm3xxx.c                |  1 +
>>  arch/arm/mach-omap2/cminst44xx.c            |  1 +
>>  arch/arm/mach-omap2/powerdomains3xxx_data.c |  1 +
>>  arch/arm/mach-omap2/prcm-common.h           | 22 ----------------------
>>  arch/arm/mach-omap2/prm2xxx_3xxx.c          |  1 +
>>  arch/arm/mach-omap2/prm33xx.c               |  1 +
>>  8 files changed, 7 insertions(+), 22 deletions(-)
>>
>> diff --git a/arch/arm/mach-omap2/cm2xxx.c b/arch/arm/mach-omap2/cm2xxx.c
>> --- a/arch/arm/mach-omap2/cm2xxx.c
>> +++ b/arch/arm/mach-omap2/cm2xxx.c
>> @@ -18,6 +18,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "prm2xxx.h"
>>  #include "cm.h"
>>  #include "cm2xxx.h"
>> diff --git a/arch/arm/mach-omap2/cm33xx.c b/arch/arm/mach-omap2/cm33xx.c
>> --- a/arch/arm/mach-omap2/cm33xx.c
>> +++ b/arch/arm/mach-omap2/cm33xx.c
>> @@ -22,6 +22,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "clockdomain.h"
>>  #include "cm.h"
>>  #include "cm33xx.h"
>> diff --git a/arch/arm/mach-omap2/cm3xxx.c b/arch/arm/mach-omap2/cm3xxx.c
>> --- a/arch/arm/mach-omap2/cm3xxx.c
>> +++ b/arch/arm/mach-omap2/cm3xxx.c
>> @@ -18,6 +18,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "prm2xxx_3xxx.h"
>>  #include "cm.h"
>>  #include "cm3xxx.h"
>> diff --git a/arch/arm/mach-omap2/cminst44xx.c b/arch/arm/mach-omap2/cminst44xx.c
>> --- a/arch/arm/mach-omap2/cminst44xx.c
>> +++ b/arch/arm/mach-omap2/cminst44xx.c
>> @@ -21,6 +21,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "clockdomain.h"
>>  #include "cm.h"
>>  #include "cm1_44xx.h"
>> diff --git a/arch/arm/mach-omap2/powerdomains3xxx_data.c b/arch/arm/mach-omap2/powerdomains3xxx_data.c
>> --- a/arch/arm/mach-omap2/powerdomains3xxx_data.c
>> +++ b/arch/arm/mach-omap2/powerdomains3xxx_data.c
>> @@ -14,6 +14,7 @@
>>  #include <linux/kernel.h>
>>  #include <linux/init.h>
>>  #include <linux/bug.h>
>> +#include <linux/delay.h>
>>
>>  #include "soc.h"
>>  #include "powerdomain.h"
>> diff --git a/arch/arm/mach-omap2/prcm-common.h b/arch/arm/mach-omap2/prcm-common.h
>> --- a/arch/arm/mach-omap2/prcm-common.h
>> +++ b/arch/arm/mach-omap2/prcm-common.h
>> @@ -434,28 +434,6 @@
>>  #define MAX_IOPAD_LATCH_TIME			100
>>  # ifndef __ASSEMBLER__
>>
>> -#include <linux/delay.h>
>> -
>> -/**
>> - * omap_test_timeout - busy-loop, testing a condition
>> - * @cond: condition to test until it evaluates to true
>> - * @timeout: maximum number of microseconds in the timeout
>> - * @index: loop index (integer)
>> - *
>> - * Loop waiting for @cond to become true or until at least @timeout
>> - * microseconds have passed.  To use, define some integer @index in the
>> - * calling code.  After running, if @index == @timeout, then the loop has
>> - * timed out.
>> - */
>> -#define omap_test_timeout(cond, timeout, index)			\
>> -({								\
>> -	for (index = 0; index < timeout; index++) {		\
>> -		if (cond)					\
>> -			break;					\
>> -		udelay(1);					\
>> -	}							\
>> -})
>> -
>>  /**
>>   * struct omap_prcm_irq - describes a PRCM interrupt bit
>>   * @name: a short name describing the interrupt type, e.g. "wkup" or "io"
>> diff --git a/arch/arm/mach-omap2/prm2xxx_3xxx.c b/arch/arm/mach-omap2/prm2xxx_3xxx.c
>> --- a/arch/arm/mach-omap2/prm2xxx_3xxx.c
>> +++ b/arch/arm/mach-omap2/prm2xxx_3xxx.c
>> @@ -16,6 +16,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "powerdomain.h"
>>  #include "prm2xxx_3xxx.h"
>>  #include "prm-regbits-24xx.h"
>> diff --git a/arch/arm/mach-omap2/prm33xx.c b/arch/arm/mach-omap2/prm33xx.c
>> --- a/arch/arm/mach-omap2/prm33xx.c
>> +++ b/arch/arm/mach-omap2/prm33xx.c
>> @@ -19,6 +19,7 @@
>>  #include <linux/err.h>
>>  #include <linux/io.h>
>>
>> +#include "common.h"
>>  #include "powerdomain.h"
>>  #include "prm33xx.h"
>>  #include "prm-regbits-33xx.h"
>>

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

* Re: [PATCH] ARM: OMAP2+: Remove duplicate definition of omap_test_timeout
  2017-01-23 13:43     ` Tero Kristo
@ 2017-01-23 15:06       ` Tony Lindgren
  -1 siblings, 0 replies; 10+ messages in thread
From: Tony Lindgren @ 2017-01-23 15:06 UTC (permalink / raw)
  To: Tero Kristo; +Cc: Lokesh Vutla, linux-omap, linux-arm-kernel

* Tero Kristo <t-kristo@ti.com> [170123 05:45]:
> On 23/01/17 12:22, Lokesh Vutla wrote:
> > + Tero,
> > 
> > On Saturday 21 January 2017 12:21 AM, Tony Lindgren wrote:
> > > We have the same defined already in common.h.
> > 
> > 
> > This is reverting what has been introduced in this[1] series. Probably
> > Tero can comment more here.
> 
> Yeah, the point of introducing that was to get rid of common.h include from
> the prcm files. See commit 250e27ee950bf67ceeb812eb4c8f2fea58d3e2b6.

OK let's forget it for now then.

Regards,

Tony

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

* [PATCH] ARM: OMAP2+: Remove duplicate definition of omap_test_timeout
@ 2017-01-23 15:06       ` Tony Lindgren
  0 siblings, 0 replies; 10+ messages in thread
From: Tony Lindgren @ 2017-01-23 15:06 UTC (permalink / raw)
  To: linux-arm-kernel

* Tero Kristo <t-kristo@ti.com> [170123 05:45]:
> On 23/01/17 12:22, Lokesh Vutla wrote:
> > + Tero,
> > 
> > On Saturday 21 January 2017 12:21 AM, Tony Lindgren wrote:
> > > We have the same defined already in common.h.
> > 
> > 
> > This is reverting what has been introduced in this[1] series. Probably
> > Tero can comment more here.
> 
> Yeah, the point of introducing that was to get rid of common.h include from
> the prcm files. See commit 250e27ee950bf67ceeb812eb4c8f2fea58d3e2b6.

OK let's forget it for now then.

Regards,

Tony

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

* Re: [PATCH] ARM: OMAP2+: Remove duplicate definition of omap_test_timeout
  2017-01-23 15:06       ` Tony Lindgren
@ 2017-01-23 19:25         ` Tero Kristo
  -1 siblings, 0 replies; 10+ messages in thread
From: Tero Kristo @ 2017-01-23 19:25 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: Lokesh Vutla, linux-omap, linux-arm-kernel

On 23/01/17 17:06, Tony Lindgren wrote:
> * Tero Kristo <t-kristo@ti.com> [170123 05:45]:
>> On 23/01/17 12:22, Lokesh Vutla wrote:
>>> + Tero,
>>>
>>> On Saturday 21 January 2017 12:21 AM, Tony Lindgren wrote:
>>>> We have the same defined already in common.h.
>>>
>>>
>>> This is reverting what has been introduced in this[1] series. Probably
>>> Tero can comment more here.
>>
>> Yeah, the point of introducing that was to get rid of common.h include from
>> the prcm files. See commit 250e27ee950bf67ceeb812eb4c8f2fea58d3e2b6.
>
> OK let's forget it for now then.

This work has been delayed by a great deal due to pending hwmod 
transition though....

Part of this may happen with the introduction of the genpd usage for 
clkdms/pwrdms actually.

-Tero

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

* [PATCH] ARM: OMAP2+: Remove duplicate definition of omap_test_timeout
@ 2017-01-23 19:25         ` Tero Kristo
  0 siblings, 0 replies; 10+ messages in thread
From: Tero Kristo @ 2017-01-23 19:25 UTC (permalink / raw)
  To: linux-arm-kernel

On 23/01/17 17:06, Tony Lindgren wrote:
> * Tero Kristo <t-kristo@ti.com> [170123 05:45]:
>> On 23/01/17 12:22, Lokesh Vutla wrote:
>>> + Tero,
>>>
>>> On Saturday 21 January 2017 12:21 AM, Tony Lindgren wrote:
>>>> We have the same defined already in common.h.
>>>
>>>
>>> This is reverting what has been introduced in this[1] series. Probably
>>> Tero can comment more here.
>>
>> Yeah, the point of introducing that was to get rid of common.h include from
>> the prcm files. See commit 250e27ee950bf67ceeb812eb4c8f2fea58d3e2b6.
>
> OK let's forget it for now then.

This work has been delayed by a great deal due to pending hwmod 
transition though....

Part of this may happen with the introduction of the genpd usage for 
clkdms/pwrdms actually.

-Tero

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

end of thread, other threads:[~2017-01-23 19:25 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-20 18:51 [PATCH] ARM: OMAP2+: Remove duplicate definition of omap_test_timeout Tony Lindgren
2017-01-20 18:51 ` Tony Lindgren
2017-01-23 10:22 ` Lokesh Vutla
2017-01-23 10:22   ` Lokesh Vutla
2017-01-23 13:43   ` Tero Kristo
2017-01-23 13:43     ` Tero Kristo
2017-01-23 15:06     ` Tony Lindgren
2017-01-23 15:06       ` Tony Lindgren
2017-01-23 19:25       ` Tero Kristo
2017-01-23 19:25         ` Tero Kristo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.