blob: ff0b6a5ebee6e469c787a09dd7b7f6eac6399a88 [file] [log] [blame]
Patrick Georgiac959032020-05-05 22:49:26 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Jonathan Zhang8f895492020-01-16 11:16:45 -08002
3#include <intelblocks/spi.h>
4#include <soc/pci_devs.h>
5
6int spi_soc_devfn_to_bus(unsigned int devfn)
7{
8 switch (devfn) {
9 case PCH_DEVFN_SPI:
10 return 0;
11 }
12 return -1;
13}