1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-10-16 07:11:53 +02:00
Files
flashrom/include/platform/udelay.h
Antonio Vázquez 3471cba18a platform: Use SPDX in headers
Change-Id: I3322366ebfa7db1d1f1e0fe60c808efd839b2858
Signed-off-by: Antonio Vázquez <antoniovazquezblanco@gmail.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/89369
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
2025-10-14 10:40:26 +00:00

15 lines
323 B
C

/*
* This file is part of the flashrom project.
*
* SPDX-License-Identifier: GPL-2.0-or-later
* SPDX-FileCopyrightText: 2025 Antonio Vázquez Blanco <antoniovazquezblanco@gmail.com>
*/
#ifndef __UDELAY_H__
#define __UDELAY_H__
void internal_sleep(unsigned int usecs);
void default_delay(unsigned int usecs);
#endif