mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 14:21:47 +00:00
d2912cb15b
Based on 2 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation # extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 4122 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Enrico Weigelt <info@metux.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22 lines
503 B
C
22 lines
503 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/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 */
|