diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-08-23 12:54:04 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-10-11 11:18:46 -0400 |
commit | 09b7dcf220a37245b16fd4a716923d75bf6edf8b (patch) | |
tree | 386e4c111c47bfd196943128c8785e00bfbb6e42 | |
parent | 606a083b1e1a357cb66454e4581b80f1a67d8368 (diff) |
MIPS: RB532: Remove unused rc32434_sync_delay and rc32434_sync_udelay
This patch removes these two unused functions :
rc32434_sync_delay and rc32434_sync_udelay
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | include/asm-mips/mach-rc32434/rc32434.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/asm-mips/mach-rc32434/rc32434.h b/include/asm-mips/mach-rc32434/rc32434.h index 9df04b72744a..fce25d4231fc 100644 --- a/include/asm-mips/mach-rc32434/rc32434.h +++ b/include/asm-mips/mach-rc32434/rc32434.h | |||
@@ -16,16 +16,4 @@ static inline void rc32434_sync(void) | |||
16 | __asm__ volatile ("sync"); | 16 | __asm__ volatile ("sync"); |
17 | } | 17 | } |
18 | 18 | ||
19 | static inline void rc32434_sync_udelay(int us) | ||
20 | { | ||
21 | __asm__ volatile ("sync"); | ||
22 | udelay(us); | ||
23 | } | ||
24 | |||
25 | static inline void rc32434_sync_delay(int ms) | ||
26 | { | ||
27 | __asm__ volatile ("sync"); | ||
28 | mdelay(ms); | ||
29 | } | ||
30 | |||
31 | #endif /* _ASM_RC32434_RC32434_H_ */ | 19 | #endif /* _ASM_RC32434_RC32434_H_ */ |