Skip to content

Commit 256437e

Browse files
Merge tag 'spi-nor/for-5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux into mtd/next
SPI NOR core changes: - Add OTP support - Fix module unload while an op in progress - Add various cleanup patches SPI NOR controller drivers changes: - intel-spi: Move platform data header to x86 subfolder
2 parents 203ba0f + 4609404 commit 256437e

17 files changed

Lines changed: 991 additions & 494 deletions

File tree

MAINTAINERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16862,6 +16862,8 @@ F: arch/arm/mach-spear/
1686216862

1686316863
SPI NOR SUBSYSTEM
1686416864
M: Tudor Ambarus <tudor.ambarus@microchip.com>
16865+
R: Michael Walle <michael@walle.cc>
16866+
R: Pratyush Yadav <p.yadav@ti.com>
1686516867
L: linux-mtd@lists.infradead.org
1686616868
S: Maintained
1686716869
W: http://www.linux-mtd.infradead.org/

drivers/mtd/spi-nor/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: GPL-2.0
22

3-
spi-nor-objs := core.o sfdp.o
3+
spi-nor-objs := core.o sfdp.o swp.o otp.o
44
spi-nor-objs += atmel.o
55
spi-nor-objs += catalyst.o
66
spi-nor-objs += eon.o

drivers/mtd/spi-nor/controllers/intel-spi.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include <linux/mtd/mtd.h>
1616
#include <linux/mtd/partitions.h>
1717
#include <linux/mtd/spi-nor.h>
18-
#include <linux/platform_data/intel-spi.h>
1918

2019
#include "intel-spi.h"
2120

drivers/mtd/spi-nor/controllers/intel-spi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef INTEL_SPI_H
1010
#define INTEL_SPI_H
1111

12-
#include <linux/platform_data/intel-spi.h>
12+
#include <linux/platform_data/x86/intel-spi.h>
1313

1414
struct intel_spi;
1515
struct resource;

0 commit comments

Comments
 (0)