Commit fb3d15c0 authored by Tony Lindgren's avatar Tony Lindgren

Misc fixes for upstream merge

- Fix warning spurious may be uninitialized
- Tabify pandora board file
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent c65c733e
...@@ -52,34 +52,34 @@ ...@@ -52,34 +52,34 @@
#include "mmc-twl4030.h" #include "mmc-twl4030.h"
#define NAND_BLOCK_SIZE SZ_128K #define NAND_BLOCK_SIZE SZ_128K
#define GPMC_CS0_BASE 0x60 #define GPMC_CS0_BASE 0x60
#define GPMC_CS_SIZE 0x30 #define GPMC_CS_SIZE 0x30
#define OMAP3_PANDORA_TS_GPIO 94 #define OMAP3_PANDORA_TS_GPIO 94
static struct mtd_partition omap3pandora_nand_partitions[] = { static struct mtd_partition omap3pandora_nand_partitions[] = {
{ {
.name = "xloader", .name = "xloader",
.offset = 0, /* Offset = 0x00000 */ .offset = 0, /* Offset = 0x00000 */
.size = 4 * NAND_BLOCK_SIZE, .size = 4 * NAND_BLOCK_SIZE,
.mask_flags = MTD_WRITEABLE .mask_flags = MTD_WRITEABLE
}, { }, {
.name = "uboot", .name = "uboot",
.offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */ .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
.size = 14 * NAND_BLOCK_SIZE, .size = 14 * NAND_BLOCK_SIZE,
}, { }, {
.name = "uboot environment", .name = "uboot environment",
.offset = MTDPART_OFS_APPEND, /* Offset = 0x240000 */ .offset = MTDPART_OFS_APPEND, /* Offset = 0x240000 */
.size = 2 * NAND_BLOCK_SIZE, .size = 2 * NAND_BLOCK_SIZE,
}, { }, {
.name = "linux", .name = "linux",
.offset = MTDPART_OFS_APPEND, /* Offset = 0x280000 */ .offset = MTDPART_OFS_APPEND, /* Offset = 0x280000 */
.size = 32 * NAND_BLOCK_SIZE, .size = 32 * NAND_BLOCK_SIZE,
}, { }, {
.name = "rootfs", .name = "rootfs",
.offset = MTDPART_OFS_APPEND, /* Offset = 0x680000 */ .offset = MTDPART_OFS_APPEND, /* Offset = 0x680000 */
.size = MTDPART_SIZ_FULL, .size = MTDPART_SIZ_FULL,
}, },
}; };
...@@ -253,7 +253,7 @@ static struct ads7846_platform_data ads7846_config = { ...@@ -253,7 +253,7 @@ static struct ads7846_platform_data ads7846_config = {
static struct omap2_mcspi_device_config ads7846_mcspi_config = { static struct omap2_mcspi_device_config ads7846_mcspi_config = {
.turbo_mode = 0, .turbo_mode = 0,
.single_channel = 1, /* 0: slave, 1: master */ .single_channel = 1, /* 0: slave, 1: master */
}; };
static struct spi_board_info omap3pandora_spi_board_info[] __initdata = { static struct spi_board_info omap3pandora_spi_board_info[] __initdata = {
......
...@@ -96,7 +96,7 @@ static void omap_mask_irq(unsigned int irq) ...@@ -96,7 +96,7 @@ static void omap_mask_irq(unsigned int irq)
int offset = irq & (~(IRQ_BITS_PER_REG - 1)); int offset = irq & (~(IRQ_BITS_PER_REG - 1));
if (cpu_is_omap34xx()) { if (cpu_is_omap34xx()) {
int spurious; int spurious = 0;
/* /*
* INT_34XX_GPT12_IRQ is also the spurious irq. Maybe because * INT_34XX_GPT12_IRQ is also the spurious irq. Maybe because
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment