arm: remove prototype for udelay_masked
authorPatrick Delaunay <patrick.delaunay@st.com>
Fri, 5 Oct 2018 09:33:51 +0000 (11:33 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 10 Oct 2018 17:35:09 +0000 (13:35 -0400)
The interruption support had be removed for ARM architecture and
the function udelay_masked() is no more used except in some timer.c
files  and have the same content than udelay() or __udelay().

This patch update each timer.c implementing this function and
remove the associated prototype in u-boot-arm.h.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
arch/arm/cpu/arm920t/imx/timer.c
arch/arm/cpu/arm926ejs/spear/timer.c
arch/arm/cpu/armv7/stv0991/timer.c
arch/arm/cpu/sa1100/timer.c
arch/arm/include/asm/u-boot-arm.h
arch/arm/mach-at91/arm920t/timer.c
board/armltd/integrator/timer.c

index cd9b5465373a8f479cfa7dc1c2ebe05625fc8f4b..928990578bf4acff7592915beb6c7aeb147f4b2d 100644 (file)
@@ -46,7 +46,7 @@ ulong get_timer_masked (void)
        return TCN1;
 }
 
-void udelay_masked (unsigned long usec)
+void __udelay (unsigned long usec)
 {
        ulong endtime = get_timer_masked() + usec;
        signed long diff;
@@ -57,11 +57,6 @@ void udelay_masked (unsigned long usec)
        } while (diff >= 0);
 }
 
-void __udelay (unsigned long usec)
-{
-       udelay_masked(usec);
-}
-
 /*
  * This function is derived from PowerPC code (read timebase as long long).
  * On ARM it just returns the timer value.
index e9ba87a4606218e85b15cfabd62159eb42f8e5c4..a6637c0efede102a8ca09f1fadc0c82ba70c0033 100644 (file)
@@ -98,11 +98,6 @@ ulong get_timer_masked(void)
        return timestamp;
 }
 
-void udelay_masked(unsigned long usec)
-{
-       return udelay(usec);
-}
-
 /*
  * This function is derived from PowerPC code (read timebase as long long).
  * On ARM it just returns the timer value.
index 5784b0614b62817358a1368fbb91a552ec9317e8..2b1fd1b34afaf9715484dc7a02bc71b071805396 100644 (file)
@@ -89,11 +89,6 @@ ulong get_timer_masked(void)
        return timestamp;
 }
 
-void udelay_masked(unsigned long usec)
-{
-       return udelay(usec);
-}
-
 /*
  * This function is derived from PowerPC code (read timebase as long long).
  * On ARM it just returns the timer value.
index 12514e4dbc955458d3c076d826f022b4f67c1087..c7829c9b097438582049e1410881b9ba8f333094 100644 (file)
@@ -17,17 +17,12 @@ ulong get_timer (ulong base)
        return get_timer_masked ();
 }
 
-void __udelay (unsigned long usec)
-{
-       udelay_masked (usec);
-}
-
 ulong get_timer_masked (void)
 {
        return OSCR;
 }
 
-void udelay_masked (unsigned long usec)
+void __udelay (unsigned long usec)
 {
        ulong tmo;
        ulong endtime;
index f1da115164173d43ceb749ae2e865ca142b63b15..97983de300ec38aa3cba950516dd0be3ab0aa21b 100644 (file)
@@ -40,7 +40,6 @@ int   board_init(void);
 
 /* cpu/.../interrupt.c */
 ulong  get_timer_masked        (void);
-void   udelay_masked           (unsigned long usec);
 
 /* calls to c from vectors.S */
 struct pt_regs;
index bbe90ae7baeff9bd586db5ca2adefc0fa57d9448..6a98d7c4de9aa26600ad3f02597f819b4d517e68 100644 (file)
@@ -58,11 +58,6 @@ ulong get_timer(ulong base)
        return get_timer_masked() - base;
 }
 
-void __udelay(unsigned long usec)
-{
-       udelay_masked(usec);
-}
-
 ulong get_timer_raw(void)
 {
        at91_tc_t *tc = (at91_tc_t *) ATMEL_BASE_TC;
@@ -87,7 +82,7 @@ ulong get_timer_masked(void)
        return get_timer_raw()/TIMER_LOAD_VAL;
 }
 
-void udelay_masked(unsigned long usec)
+void __udelay(unsigned long usec)
 {
        u32 tmo;
        u32 endtime;
index 30638840143504d871f4577313a3fb5f219dd541..53086c7a83cb09b03e8f3b0350c910d418528939 100644 (file)
@@ -138,12 +138,6 @@ ulong get_timer_masked (void)
        return timestamp;
 }
 
-/* waits specified delay value and resets timestamp */
-void udelay_masked (unsigned long usec)
-{
-       udelay(usec);
-}
-
 /*
  * This function is derived from PowerPC code (read timebase as long long).
  * On ARM it just returns the timer value.