2010-06-15 09:31:02 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009-2010 Pengutronix
|
|
|
|
* Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU General Public License version 2 as published by the
|
|
|
|
* Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
|
|
|
|
struct platform_device *imx_add_platform_device(const char *name, int id,
|
|
|
|
const struct resource *res, unsigned int num_resources,
|
|
|
|
const void *data, size_t size_data);
|
2010-06-15 16:14:19 +00:00
|
|
|
|
|
|
|
#include <mach/mxc_nand.h>
|
|
|
|
struct platform_device *__init imx_add_mxc_nand_v1(resource_size_t iobase,
|
|
|
|
int irq, const struct mxc_nand_platform_data *pdata);
|
|
|
|
struct platform_device *__init imx_add_mxc_nand_v21(resource_size_t iobase,
|
|
|
|
int irq, const struct mxc_nand_platform_data *pdata);
|