aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/flash.h2
-rw-r--r--include/programmer.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/flash.h b/include/flash.h
index 3f78721b..aabc785e 100644
--- a/include/flash.h
+++ b/include/flash.h
@@ -60,7 +60,7 @@ void *master_map_flash_region(const struct registered_master *mast,
const char *descr, uintptr_t phys_addr, size_t len);
void master_unmap_flash_region(const struct registered_master *mast,
void *virt_addr, size_t len);
-/* NOTE: flashctx is not used in internal_delay. In this case, a context should be NULL. */
+/* NOTE: flashctx is not used in default_delay. In this case, a context should be NULL. */
void programmer_delay(const struct flashrom_flashctx *flash, unsigned int usecs);
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
diff --git a/include/programmer.h b/include/programmer.h
index 8ba5781c..aaa14071 100644
--- a/include/programmer.h
+++ b/include/programmer.h
@@ -211,7 +211,7 @@ extern const struct board_info laptops_known[];
void myusec_delay(unsigned int usecs);
void myusec_calibrate_delay(void);
void internal_sleep(unsigned int usecs);
-void internal_delay(unsigned int usecs);
+void default_delay(unsigned int usecs);
#if CONFIG_INTERNAL == 1
/* board_enable.c */