Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 09b7dcf2 authored by Florian Fainelli's avatar Florian Fainelli Committed by Ralf Baechle
Browse files

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: default avatarFlorian Fainelli <florian@openwrt.org>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 606a083b
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
@@ -16,16 +16,4 @@ static inline void rc32434_sync(void)
	__asm__ volatile ("sync");
}

static inline void rc32434_sync_udelay(int us)
{
	__asm__ volatile ("sync");
	udelay(us);
}

static inline void rc32434_sync_delay(int ms)
{
	__asm__ volatile ("sync");
	mdelay(ms);
}

#endif  /* _ASM_RC32434_RC32434_H_ */