[Blackfin] arch: conditionally enable flash resources since it requests the async memory bank

Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
This commit is contained in:
Mike Frysinger 2008-03-26 08:09:12 +08:00 committed by Bryan Wu
parent 2e8d7965e6
commit 793dc27b51
4 changed files with 20 additions and 0 deletions

View File

@ -109,6 +109,7 @@ static struct platform_device net2272_bfin_device = {
}; };
#endif #endif
#if defined(CONFIG_MTD_BF5xx) || defined(CONFIG_MTD_BF5xx_MODULE)
static struct mtd_partition stamp_partitions[] = { static struct mtd_partition stamp_partitions[] = {
{ {
.name = "Bootloader", .name = "Bootloader",
@ -152,6 +153,7 @@ static struct platform_device stamp_flash_device = {
.num_resources = ARRAY_SIZE(stamp_flash_resource), .num_resources = ARRAY_SIZE(stamp_flash_resource),
.resource = stamp_flash_resource, .resource = stamp_flash_resource,
}; };
#endif
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
/* all SPI peripherals info goes here */ /* all SPI peripherals info goes here */
@ -515,7 +517,10 @@ static struct platform_device *stamp_devices[] __initdata = {
#endif #endif
&bfin_gpios_device, &bfin_gpios_device,
#if defined(CONFIG_MTD_BF5xx) || defined(CONFIG_MTD_BF5xx_MODULE)
&stamp_flash_device, &stamp_flash_device,
#endif
}; };
static int __init stamp_init(void) static int __init stamp_init(void)

View File

@ -353,6 +353,7 @@ static struct platform_device net2272_bfin_device = {
}; };
#endif #endif
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
static struct mtd_partition stamp_partitions[] = { static struct mtd_partition stamp_partitions[] = {
{ {
.name = "Bootloader", .name = "Bootloader",
@ -395,6 +396,7 @@ static struct platform_device stamp_flash_device = {
.num_resources = 1, .num_resources = 1,
.resource = &stamp_flash_resource, .resource = &stamp_flash_resource,
}; };
#endif
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
/* all SPI peripherals info goes here */ /* all SPI peripherals info goes here */
@ -818,7 +820,10 @@ static struct platform_device *stamp_devices[] __initdata = {
#endif #endif
&bfin_gpios_device, &bfin_gpios_device,
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
&stamp_flash_device, &stamp_flash_device,
#endif
}; };
static int __init stamp_init(void) static int __init stamp_init(void)

View File

@ -330,6 +330,7 @@ static struct platform_device bf54x_sdh_device = {
}; };
#endif #endif
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
static struct mtd_partition ezkit_partitions[] = { static struct mtd_partition ezkit_partitions[] = {
{ {
.name = "Bootloader", .name = "Bootloader",
@ -367,6 +368,7 @@ static struct platform_device ezkit_flash_device = {
.num_resources = 1, .num_resources = 1,
.resource = &ezkit_flash_resource, .resource = &ezkit_flash_resource,
}; };
#endif
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
/* all SPI peripherals info goes here */ /* all SPI peripherals info goes here */
@ -661,7 +663,10 @@ static struct platform_device *ezkit_devices[] __initdata = {
#endif #endif
&bfin_gpios_device, &bfin_gpios_device,
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
&ezkit_flash_device, &ezkit_flash_device,
#endif
}; };
static int __init ezkit_init(void) static int __init ezkit_init(void)

View File

@ -220,6 +220,7 @@ static struct platform_device bfin_uart_device = {
}; };
#endif #endif
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
static struct mtd_partition ezkit_partitions[] = { static struct mtd_partition ezkit_partitions[] = {
{ {
.name = "Bootloader", .name = "Bootloader",
@ -257,6 +258,7 @@ static struct platform_device ezkit_flash_device = {
.num_resources = 1, .num_resources = 1,
.resource = &ezkit_flash_resource, .resource = &ezkit_flash_resource,
}; };
#endif
#ifdef CONFIG_SPI_BFIN #ifdef CONFIG_SPI_BFIN
#if defined(CONFIG_SND_BLACKFIN_AD1836) \ #if defined(CONFIG_SND_BLACKFIN_AD1836) \
@ -460,7 +462,10 @@ static struct platform_device *ezkit_devices[] __initdata = {
#endif #endif
&bfin_gpios_device, &bfin_gpios_device,
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
&ezkit_flash_device, &ezkit_flash_device,
#endif
}; };
static int __init ezkit_init(void) static int __init ezkit_init(void)