summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/xeon_sp/spi.c
blob: f312a56d7d2e74e9626829b7b5abbdc654de2f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */

#include <intelblocks/spi.h>
#include <soc/pci_devs.h>

int spi_soc_devfn_to_bus(unsigned int devfn)
{
	switch (devfn) {
	case PCH_DEVFN_SPI:
		return 0;
	}
	return -1;
}