brintos

brintos / linux-shallow public Read only

0
0
Text · 441 B · a4f0327 Raw
20 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Intel PCH/PCU SPI flash driver.4 *5 * Copyright (C) 2016 - 2022, Intel Corporation6 * Author: Mika Westerberg <mika.westerberg@linux.intel.com>7 */8 9#ifndef SPI_INTEL_H10#define SPI_INTEL_H11 12#include <linux/platform_data/x86/spi-intel.h>13 14struct resource;15 16int intel_spi_probe(struct device *dev, struct resource *mem,17		    const struct intel_spi_boardinfo *info);18 19#endif /* SPI_INTEL_H */20