mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 14:34:28 +08:00
b67a1a02d4
Transform the au1550nd.c driver into a platform_driver and hook it up in the PB1550 board (gen_nand works fine on the DB1550, but since I don't have a PB1550 to test this driver stays for now). Signed-off-by: Manuel Lauss <manuel.lauss@googlemail.com> Cc: linux-mtd@lists.infradead.org To: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/2875/ Patchwork: https://patchwork.linux-mips.org/patch/3160/ Acked-by: Artem Bityutskiy <dedekind1@gmail.com> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
17 lines
269 B
C
17 lines
269 B
C
/*
|
|
* platform data for the Au1550 NAND driver
|
|
*/
|
|
|
|
#ifndef _AU1550ND_H_
|
|
#define _AU1550ND_H_
|
|
|
|
#include <linux/mtd/partitions.h>
|
|
|
|
struct au1550nd_platdata {
|
|
struct mtd_partition *parts;
|
|
int num_parts;
|
|
int devwidth; /* 0 = 8bit device, 1 = 16bit device */
|
|
};
|
|
|
|
#endif
|