Skip to content

Commit

Permalink
Fix bluetooth sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
dalingrin committed May 10, 2011
1 parent f5ba10e commit d62b764
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions arch/arm/mach-omap2/board-evt1a.c
Expand Up @@ -40,11 +40,23 @@


#ifdef CONFIG_TI_ST #ifdef CONFIG_TI_ST
/* wl128x BT, FM, GPS connectivity chip */ /* wl128x BT, FM, GPS connectivity chip */
int plat_kim_suspend(struct platform_device *pdev, pm_message_t state)
{
return 0;
}

int plat_kim_resume(struct platform_device *pdev)
{
return 0;
}

struct ti_st_plat_data wilink_pdata = { struct ti_st_plat_data wilink_pdata = {
.nshutdown_gpio = 60, .nshutdown_gpio = 60,
.dev_name = "/dev/ttyO1", .dev_name = "/dev/ttyO1",
.flow_cntrl = 1, .flow_cntrl = 1,
.baud_rate = 3000000, .baud_rate = 3000000,
.suspend = plat_kim_suspend,
.resume = plat_kim_resume,
}; };


static struct platform_device kim_wl127x_device = { static struct platform_device kim_wl127x_device = {
Expand Down

0 comments on commit d62b764

Please sign in to comment.