summaryrefslogtreecommitdiff
path: root/src/arch/arm
diff options
context:
space:
mode:
authorMartin Roth <gaumless@gmail.com>2024-11-28 16:02:52 -0700
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2024-11-30 04:44:06 +0000
commitc91553d3a38f5efb9e78b6c1b9a3bf9f9ff6e614 (patch)
tree4bb57e5c34946237b9b4e0a00493980c586b28ad /src/arch/arm
parent932b5079074d752b121067dc3698e7838cdb4b1b (diff)
Treewide: Remove unused header files
These header files do not seem to be used in coreboot. Presumably they're left over after the code that used them was removed. Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: Ide70239c7c2e93fff548d989735450396308c62b Reviewed-on: https://review.coreboot.org/c/coreboot/+/85370 Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/arch/arm')
-rw-r--r--src/arch/arm/include/clocks.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/arch/arm/include/clocks.h b/src/arch/arm/include/clocks.h
deleted file mode 100644
index dc3080cc9a..0000000000
--- a/src/arch/arm/include/clocks.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-/* Standard clock speeds */
-
-/*
- * We define some commonly-used clock speeds to avoid error since long
- * numbers are hard to read.
- *
- * The format of the label is
- * CLK_x_yU where:
- * x is the integer speed
- * y is the fractional part which can be omitted if 0
- * U is the units (blank for Hz, K or M for KHz and MHz)
- *
- * Please order the items by increasing Hz
- */
-enum {
- CLK_32768 = 32768,
- CLK_20M = 20000000,
- CLK_24M = 24000000,
- CLK_144M = 144000000,
- CLK_216M = 216000000,
- CLK_300M = 300000000,
-};