summaryrefslogtreecommitdiff
path: root/src/mainboard/google/kahlee/boardid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/kahlee/boardid.c')
-rw-r--r--src/mainboard/google/kahlee/boardid.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/mainboard/google/kahlee/boardid.c b/src/mainboard/google/kahlee/boardid.c
deleted file mode 100644
index 5b59f329bd..0000000000
--- a/src/mainboard/google/kahlee/boardid.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2017 Advanced Micro Devices, Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
-#include <boardid.h>
-#include <console/console.h>
-#include <gpio.h>
-#include <variant/gpio.h>
-#include <baseboard/variants.h>
-
-uint8_t board_id(void)
-{
- MAYBE_STATIC int id = -1;
-
- if (id < 0) {
- id = variant_board_id();
- printk(BIOS_SPEW, "Board ID: %#x.\n", id);
- }
-
- return id;
-}