mb/scaleway/tagada: Remove unused board_id

Change-Id: I6175ce3d3ef739c4f503db826036ffe8feff9ddc
Signed-off-by: Julien Viard de Galbert <jviarddegalbert@online.net>
Reviewed-on: https://review.coreboot.org/23741
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Julien Viard de Galbert 2018-02-16 14:45:11 +01:00 committed by Martin Roth
parent 5a2c7969e9
commit ed089376e3
3 changed files with 0 additions and 56 deletions

View File

@ -14,11 +14,9 @@
## GNU General Public License for more details. ## GNU General Public License for more details.
## ##
romstage-y += boardid.c
romstage-y += hsio.c romstage-y += hsio.c
ramstage-y += ramstage.c ramstage-y += ramstage.c
ramstage-y += boardid.c
ramstage-y += hsio.c ramstage-y += hsio.c
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += acpi_tables.c ramstage-$(CONFIG_HAVE_ACPI_TABLES) += acpi_tables.c
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += fadt.c ramstage-$(CONFIG_HAVE_ACPI_TABLES) += fadt.c

View File

@ -1,28 +0,0 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2015 - 2017 Intel Corporation.
*
* 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 <console/console.h>
#include "harcuvar_boardid.h"
uint8_t board_id(void)
{
int id = BoardIdHarcuvar;
printk(BIOS_SPEW, "Board ID: %#x.\n", id);
return id;
}

View File

@ -1,26 +0,0 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2015 - 2017 Intel Corporation.
*
* 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.
*
*/
#ifndef HARCUVAR_MAINBOARD_BOARD_H
#define HARCUVAR_MAINBOARD_BOARD_H
#include <stdint.h>
#define BoardIdHarcuvar 0x52
uint8_t board_id(void);
#endif /* MAINBOARD_BOARD_H */