blob: cffe7210421ec0838b82aad68c9784faba798bc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef __DEVICE_SPI_H__
#define __DEVICE_SPI_H__
struct device;
struct spi_bus_operations {
/*
* This is a SoC-specific method that can be provided to translate the
* 'struct device' for a SPI controller into a unique SPI bus
* number. Returns -1 if the bus number for this bus cannot be
* determined.
*/
int (*dev_to_bus)(struct device *dev);
};
#endif /* __DEVICE_SPI_H__ */
|