ndfc.c (3c09ec59cdea5b132212d97154d625fd34e436dd) ndfc.c (e5acf9c862974041f7b2f581d1a40ccd29769add)
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Overview:
4 * Platform independent driver for NDFC (NanD Flash Controller)
5 * integrated into EP440 cores
6 *
7 * Ported to an OF platform driver by Sean MacLennan
8 *

--- 4 unchanged lines hidden (view full) ---

13 * Author: Thomas Gleixner
14 *
15 * Copyright 2006 IBM
16 * Copyright 2008 PIKA Technologies
17 * Sean MacLennan <smaclennan@pikatech.com>
18 */
19#include <linux/module.h>
20#include <linux/mtd/rawnand.h>
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Overview:
4 * Platform independent driver for NDFC (NanD Flash Controller)
5 * integrated into EP440 cores
6 *
7 * Ported to an OF platform driver by Sean MacLennan
8 *

--- 4 unchanged lines hidden (view full) ---

13 * Author: Thomas Gleixner
14 *
15 * Copyright 2006 IBM
16 * Copyright 2008 PIKA Technologies
17 * Sean MacLennan <smaclennan@pikatech.com>
18 */
19#include <linux/module.h>
20#include <linux/mtd/rawnand.h>
21#include <linux/mtd/nand_ecc.h>
21#include <linux/mtd/nand-ecc-sw-hamming.h>
22#include <linux/mtd/partitions.h>
23#include <linux/mtd/ndfc.h>
24#include <linux/slab.h>
25#include <linux/mtd/mtd.h>
26#include <linux/of_address.h>
27#include <linux/of_platform.h>
28#include <asm/io.h>
29

--- 249 unchanged lines hidden ---
22#include <linux/mtd/partitions.h>
23#include <linux/mtd/ndfc.h>
24#include <linux/slab.h>
25#include <linux/mtd/mtd.h>
26#include <linux/of_address.h>
27#include <linux/of_platform.h>
28#include <asm/io.h>
29

--- 249 unchanged lines hidden ---