summaryrefslogtreecommitdiff
path: root/board/trogdor/board_revs.h
diff options
context:
space:
mode:
Diffstat (limited to 'board/trogdor/board_revs.h')
-rw-r--r--board/trogdor/board_revs.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/board/trogdor/board_revs.h b/board/trogdor/board_revs.h
deleted file mode 100644
index b587de65fc..0000000000
--- a/board/trogdor/board_revs.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef __CROS_EC_BOARD_REVS_H
-#define __CROS_EC_BOARD_REVS_H
-
-#define TROGDOR_REV0 0
-#define TROGDOR_REV1 1
-#define TROGDOR_REV2 2
-#define TROGDOR_REV_LAST TROGDOR_REV2
-
-#define TROGDOR_REV_DEFAULT TROGDOR_REV2
-
-#if !defined(BOARD_REV)
-#define BOARD_REV TROGDOR_REV_DEFAULT
-#endif
-
-#if BOARD_REV < TROGDOR_REV0 || BOARD_REV > TROGDOR_REV_LAST
-#error "Board revision out of range"
-#endif
-
-#if BOARD_REV < TROGDOR_REV2
-#error "Legacy board not supported"
-#endif
-
-#endif /* __CROS_EC_BOARD_REVS_H */