]> Git Repo - J-linux.git/blob - drivers/mtd/spi-nor/fujitsu.c
Merge tag 'amd-drm-next-6.5-2023-06-09' of https://gitlab.freedesktop.org/agd5f/linux...
[J-linux.git] / drivers / mtd / spi-nor / fujitsu.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2005, Intec Automation Inc.
4  * Copyright (C) 2014, Freescale Semiconductor, Inc.
5  */
6
7 #include <linux/mtd/spi-nor.h>
8
9 #include "core.h"
10
11 static const struct flash_info fujitsu_nor_parts[] = {
12         /* Fujitsu */
13         { "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1)
14                 FLAGS(SPI_NOR_NO_ERASE) },
15 };
16
17 const struct spi_nor_manufacturer spi_nor_fujitsu = {
18         .name = "fujitsu",
19         .parts = fujitsu_nor_parts,
20         .nparts = ARRAY_SIZE(fujitsu_nor_parts),
21 };
This page took 0.02978 seconds and 4 git commands to generate.