[esp8266] Drop redundant arch_get_cpu_cycle_count() decl

The inline def above was already in place; the bare decl was inherited
via the merge from followup/hal-esp32 and is now redundant on this PR.
This commit is contained in:
J. Nick Koston
2026-04-29 07:25:07 -05:00
parent cd43002779
commit c5661c72dc
-2
View File
@@ -66,8 +66,6 @@ __attribute__((always_inline)) inline void arch_init() {}
__attribute__((always_inline)) inline uint32_t arch_get_cpu_cycle_count() { return esp_get_cycle_count(); }
__attribute__((always_inline)) inline uint32_t arch_get_cpu_freq_hz() { return F_CPU; }
uint32_t arch_get_cpu_cycle_count();
} // namespace esphome
#endif // USE_ESP8266