Skip to content

Commit

Permalink
Merge branch 'for-39-rc4' of git://codeaurora.org/quic/kernel/davidb/…
Browse files Browse the repository at this point in the history
…linux-msm

* 'for-39-rc4' of git://codeaurora.org/quic/kernel/davidb/linux-msm:
  msm: timer: fix missing return value
  msm: Remove extraneous ffa device check
  • Loading branch information
Linus Torvalds committed Apr 18, 2011
2 parents 96fd2d5 + 893b66c commit e024f69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions arch/arm/mach-msm/board-qsd8x50.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,7 @@ static struct msm_mmc_platform_data qsd8x50_sdc1_data = {

static void __init qsd8x50_init_mmc(void)
{
if (machine_is_qsd8x50_ffa() || machine_is_qsd8x50a_ffa())
vreg_mmc = vreg_get(NULL, "gp6");
else
vreg_mmc = vreg_get(NULL, "gp5");
vreg_mmc = vreg_get(NULL, "gp5");

if (IS_ERR(vreg_mmc)) {
pr_err("vreg get for vreg_mmc failed (%ld)\n",
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-msm/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ int __cpuinit local_timer_setup(struct clock_event_device *evt)

/* Use existing clock_event for cpu 0 */
if (!smp_processor_id())
return;
return 0;

writel(DGT_CLK_CTL_DIV_4, MSM_TMR_BASE + DGT_CLK_CTL);

Expand Down

0 comments on commit e024f69

Please sign in to comment.