-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MTD: nand: make au1550nd.c a platform_driver
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>
- Loading branch information
Manuel Lauss
authored and
Ralf Baechle
committed
Dec 8, 2011
1 parent
1c043f1
commit b67a1a0
Showing
3 changed files
with
205 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* 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 |
Oops, something went wrong.