mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/
synced 2026-04-21 08:03:45 -04:00
mtd: spi-nor: intel-spi: Move platform data header to x86 subfolder
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
This commit is contained in:
committed by
Tudor Ambarus
parent
04fc298c7d
commit
ae2177cf31
29
include/linux/platform_data/x86/intel-spi.h
Normal file
29
include/linux/platform_data/x86/intel-spi.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/* 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_PDATA_H
|
||||
#define INTEL_SPI_PDATA_H
|
||||
|
||||
enum intel_spi_type {
|
||||
INTEL_SPI_BYT = 1,
|
||||
INTEL_SPI_LPT,
|
||||
INTEL_SPI_BXT,
|
||||
INTEL_SPI_CNL,
|
||||
};
|
||||
|
||||
/**
|
||||
* struct intel_spi_boardinfo - Board specific data for Intel SPI driver
|
||||
* @type: Type which this controller is compatible with
|
||||
* @writeable: The chip is writeable
|
||||
*/
|
||||
struct intel_spi_boardinfo {
|
||||
enum intel_spi_type type;
|
||||
bool writeable;
|
||||
};
|
||||
|
||||
#endif /* INTEL_SPI_PDATA_H */
|
||||
Reference in New Issue
Block a user