repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
17 lines
344 B
C
17 lines
344 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _ASM_DELAY_H
|
|
#define _ASM_DELAY_H
|
|
|
|
#include <asm/param.h>
|
|
|
|
extern void __delay(unsigned long cycles);
|
|
extern void __udelay(unsigned long usecs);
|
|
|
|
#define udelay(usecs) __udelay((usecs))
|
|
|
|
#endif /* _ASM_DELAY_H */
|