Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v6.4-rc2 16 lines 344 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved. 4 */ 5 6#ifndef _ASM_DELAY_H 7#define _ASM_DELAY_H 8 9#include <asm/param.h> 10 11extern void __delay(unsigned long cycles); 12extern void __udelay(unsigned long usecs); 13 14#define udelay(usecs) __udelay((usecs)) 15 16#endif /* _ASM_DELAY_H */