samsung.c (691288e14dc5cccc9ff1219765554981f73a7c14) | samsung.c (7b15e2bb9b1026925f0f98243cd6cf80bd3fb47d) |
---|---|
1/* 2 * S3C64XX/S5PC100 OneNAND driver at U-Boot 3 * 4 * Copyright (C) 2008-2009 Samsung Electronics 5 * Kyungmin Park <kyungmin.park@samsung.com> 6 * 7 * Implementation: 8 * Emulate the pseudo BufferRAM --- 14 unchanged lines hidden (view full) --- 23 * You should have received a copy of the GNU General Public License 24 * along with this program; if not, write to the Free Software 25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 26 * MA 02111-1307 USA 27 */ 28 29#include <common.h> 30#include <malloc.h> | 1/* 2 * S3C64XX/S5PC100 OneNAND driver at U-Boot 3 * 4 * Copyright (C) 2008-2009 Samsung Electronics 5 * Kyungmin Park <kyungmin.park@samsung.com> 6 * 7 * Implementation: 8 * Emulate the pseudo BufferRAM --- 14 unchanged lines hidden (view full) --- 23 * You should have received a copy of the GNU General Public License 24 * along with this program; if not, write to the Free Software 25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 26 * MA 02111-1307 USA 27 */ 28 29#include <common.h> 30#include <malloc.h> |
31#include <linux/mtd/compat.h> | 31#include <linux/compat.h> |
32#include <linux/mtd/mtd.h> 33#include <linux/mtd/onenand.h> 34#include <linux/mtd/samsung_onenand.h> 35 36#include <asm/io.h> 37#include <asm/errno.h> 38 39#ifdef ONENAND_DEBUG --- 606 unchanged lines hidden --- | 32#include <linux/mtd/mtd.h> 33#include <linux/mtd/onenand.h> 34#include <linux/mtd/samsung_onenand.h> 35 36#include <asm/io.h> 37#include <asm/errno.h> 38 39#ifdef ONENAND_DEBUG --- 606 unchanged lines hidden --- |