You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
sh: Fix up the sh64 build.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
@@ -15,7 +15,6 @@ extern void __ndelay(unsigned long nsecs);
|
||||
extern void __const_udelay(unsigned long xloops);
|
||||
extern void __delay(unsigned long loops);
|
||||
|
||||
#ifdef CONFIG_SUPERH32
|
||||
#define udelay(n) (__builtin_constant_p(n) ? \
|
||||
((n) > 20000 ? __bad_udelay() : __const_udelay((n) * 0x10c6ul)) : \
|
||||
__udelay(n))
|
||||
@@ -23,9 +22,5 @@ extern void __delay(unsigned long loops);
|
||||
#define ndelay(n) (__builtin_constant_p(n) ? \
|
||||
((n) > 20000 ? __bad_ndelay() : __const_udelay((n) * 5ul)) : \
|
||||
__ndelay(n))
|
||||
#else
|
||||
extern void udelay(unsigned long usecs);
|
||||
extern void ndelay(unsigned long nsecs);
|
||||
#endif
|
||||
|
||||
#endif /* __ASM_SH_DELAY_H */
|
||||
|
||||
Reference in New Issue
Block a user