aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/cezanne/mca.c
blob: 77006a713ce326eed2f025e7deb9c60cb0aae975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only */

#include <amdblocks/mca.h>
#include <types.h>

bool mca_has_expected_bank_count(void)
{
	return true;
}

bool mca_is_valid_bank(unsigned int bank)
{
	return false;
}

const char *mca_get_bank_name(unsigned int bank)
{
	return "";
}