~ubuntu-branches/ubuntu/quantal/linux-lowlatency/quantal

« back to all changes in this revision

Viewing changes to drivers/mmc/host/sdhci.c

  • Committer: Package Import Robot
  • Author(s): Alessio Igor Bogani
  • Date: 2011-10-26 11:13:05 UTC
  • Revision ID: package-import@ubuntu.com-20111026111305-04kado7d1u2er2rl
Tags: 3.2.0-16.25
Add new lowlatency kernel flavour

Show diffs side-by-side

added added

removed removed

Lines of Context:
1364
1364
                if ((ios->timing == MMC_TIMING_UHS_SDR50) ||
1365
1365
                    (ios->timing == MMC_TIMING_UHS_SDR104) ||
1366
1366
                    (ios->timing == MMC_TIMING_UHS_DDR50) ||
1367
 
                    (ios->timing == MMC_TIMING_UHS_SDR25) ||
1368
 
                    (ios->timing == MMC_TIMING_UHS_SDR12))
 
1367
                    (ios->timing == MMC_TIMING_UHS_SDR25))
1369
1368
                        ctrl |= SDHCI_CTRL_HISPD;
1370
1369
 
1371
1370
                ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2336
2335
        /* Disable tuning since we are suspending */
2337
2336
        if (host->version >= SDHCI_SPEC_300 && host->tuning_count &&
2338
2337
            host->tuning_mode == SDHCI_TUNING_MODE_1) {
 
2338
                del_timer_sync(&host->tuning_timer);
2339
2339
                host->flags &= ~SDHCI_NEEDS_RETUNING;
2340
 
                mod_timer(&host->tuning_timer, jiffies +
2341
 
                        host->tuning_count * HZ);
2342
2340
        }
2343
2341
 
2344
2342
        ret = mmc_suspend_host(host->mmc);