ae2177cf31
In order to group x86 related platform data move intel-spi.h to x86 folder. While at it, remove duplicate inclusion in C file. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> [ta: s/x85/x86] Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com> Reviewed-by: Vignesh Raghavendra <vigneshr@ti.com> Link: https://lore.kernel.org/r/20210304140820.56692-1-andriy.shevchenko@linux.intel.com
22 lines
507 B
C
22 lines
507 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Intel PCH/PCU SPI flash driver.
|
|
*
|
|
* Copyright (C) 2016, Intel Corporation
|
|
* Author: Mika Westerberg <mika.westerberg@linux.intel.com>
|
|
*/
|
|
|
|
#ifndef INTEL_SPI_H
|
|
#define INTEL_SPI_H
|
|
|
|
#include <linux/platform_data/x86/intel-spi.h>
|
|
|
|
struct intel_spi;
|
|
struct resource;
|
|
|
|
struct intel_spi *intel_spi_probe(struct device *dev,
|
|
struct resource *mem, const struct intel_spi_boardinfo *info);
|
|
int intel_spi_remove(struct intel_spi *ispi);
|
|
|
|
#endif /* INTEL_SPI_H */
|