Commit 5f6a6427 authored by David Brownell's avatar David Brownell Committed by Tony Lindgren

twl4030: linkage fix for generic power scripts

Section fixes for generic twl4030 power scripts.

NOTE:  doesn't fix the bug whereby Beagle won't reset when
these scripts are loaded.  Or fix SDP section warnings.
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 398b3428
......@@ -206,7 +206,7 @@ static struct twl4030_platform_data beagle_twldata = {
/* platform_data for children goes here */
.usb = &beagle_usb_data,
.gpio = &beagle_gpio_data,
.power = &generic3430_t2scripts_data,
.power = GENERIC3430_T2SCRIPTS_DATA,
.vmmc1 = &beagle_vmmc1,
.vsim = &beagle_vsim,
.vdac = &beagle_vdac,
......
......@@ -139,7 +139,7 @@ static struct twl4030_platform_data omap3evm_twldata = {
.keypad = &omap3evm_kp_data,
.madc = &omap3evm_madc_data,
.usb = &omap3evm_usb_data,
.power = &generic3430_t2scripts_data,
.power = GENERIC3430_T2SCRIPTS_DATA,
.gpio = &omap3evm_gpio_data,
};
......
......@@ -162,7 +162,7 @@ static struct twl4030_platform_data overo_twldata = {
.irq_end = TWL4030_IRQ_END,
.gpio = &overo_gpio_data,
.usb = &overo_usb_data,
.power = &generic3430_t2scripts_data,
.power = GENERIC3430_T2SCRIPTS_DATA,
};
static struct i2c_board_info __initdata overo_i2c_boardinfo[] = {
......
......@@ -23,6 +23,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef CONFIG_TWL4030_POWER
#include <linux/kernel.h>
#include <linux/device.h>
#include <linux/init.h>
......@@ -76,3 +78,4 @@ struct twl4030_power_data generic3430_t2scripts_data __initdata = {
};
#endif /* CONFIG_TWL4030_POWER */
......@@ -3,6 +3,11 @@
#include <linux/i2c/twl4030.h>
#ifdef CONFIG_TWL4030_POWER
extern struct twl4030_power_data generic3430_t2scripts_data;
#define GENERIC3430_T2SCRIPTS_DATA &generic3430_t2scripts_data
#else
#define GENERIC3430_T2SCRIPTS_DATA NULL
#endif /* CONFIG_TWL4030_POWER */
#endif
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