diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3stalker.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-omap3stalker.c | 16 | 
1 files changed, 7 insertions, 9 deletions
diff --git a/arch/arm/mach-omap2/board-omap3stalker.c b/arch/arm/mach-omap2/board-omap3stalker.c index 64100438079..4dffc95bddd 100644 --- a/arch/arm/mach-omap2/board-omap3stalker.c +++ b/arch/arm/mach-omap2/board-omap3stalker.c @@ -24,6 +24,7 @@  #include <linux/input.h>  #include <linux/gpio_keys.h> +#include <linux/regulator/fixed.h>  #include <linux/regulator/machine.h>  #include <linux/i2c/twl.h>  #include <linux/mmc/host.h> @@ -72,15 +73,6 @@ static struct omap_smsc911x_platform_data smsc911x_cfg = {  static inline void __init omap3stalker_init_eth(void)  { -	struct clk *l3ck; -	unsigned int rate; - -	l3ck = clk_get(NULL, "l3_ck"); -	if (IS_ERR(l3ck)) -		rate = 100000000; -	else -		rate = clk_get_rate(l3ck); -  	omap_mux_init_gpio(19, OMAP_PIN_INPUT_PULLUP);  	gpmc_smsc911x_init(&smsc911x_cfg);  } @@ -419,8 +411,14 @@ static struct omap_board_mux board_mux[] __initdata = {  };  #endif +static struct regulator_consumer_supply dummy_supplies[] = { +	REGULATOR_SUPPLY("vddvario", "smsc911x.0"), +	REGULATOR_SUPPLY("vdd33a", "smsc911x.0"), +}; +  static void __init omap3_stalker_init(void)  { +	regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies));  	omap3_mux_init(board_mux, OMAP_PACKAGE_CUS);  	omap_board_config = omap3_stalker_config;  	omap_board_config_size = ARRAY_SIZE(omap3_stalker_config);  |