diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3h1.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-omap3h1.c | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/arch/arm/mach-omap2/board-omap3h1.c b/arch/arm/mach-omap2/board-omap3h1.c index 0fd78f1b3a4..421b300a777 100644 --- a/arch/arm/mach-omap2/board-omap3h1.c +++ b/arch/arm/mach-omap2/board-omap3h1.c @@ -117,7 +117,7 @@ static struct mtd_partition omap3h1_nand_partitions[] = {  		.size		= 80 * NAND_BLOCK_SIZE,  	},  	{ -		.name		= "devicetree", +		.name		= "ramdisk",  		.offset		= MTDPART_OFS_APPEND,	/* Offset = 0x1180000 */  		.size		= 40 * NAND_BLOCK_SIZE,  	}, @@ -388,6 +388,8 @@ static struct regulator_init_data tps65910_3v3 = {  /* This is the OMAP display subsystem. Part of the OMAP processor OCP stuff.   * USB also depends on this, so if you want to transfer files it has to be    * always on. + * NAND flash and UART3 (which we don't use) requires it  + * as well.    */  static struct regulator_consumer_supply tps65910_1v8_supply[] = { @@ -409,17 +411,17 @@ static struct regulator_init_data tps65910_1v8 = {          .state_mem         = {              .uV = 0,              .mode = REGULATOR_MODE_STANDBY, -            .disabled = 1, +            .enabled = 1,          },          .state_disk        = {              .uV = 0,              .mode = REGULATOR_MODE_STANDBY, -            .disabled = 1, +            .enabled = 1,          },          .state_standby     = {              .uV = 0,              .mode = REGULATOR_MODE_STANDBY, -            .disabled = 1, +            .enabled = 1,          },      }, |