~ubuntu-branches/debian/experimental/linux-tools/experimental

« back to all changes in this revision

Viewing changes to include/linux/mmc/host.h

  • Committer: Package Import Robot
  • Author(s): Ben Hutchings
  • Date: 2014-02-02 16:57:49 UTC
  • mfrom: (1.1.10) (0.1.21 sid)
  • Revision ID: package-import@ubuntu.com-20140202165749-tw94o9t1t0a8txk6
Tags: 3.13-1~exp2
Merge changes from sid up to 3.12.6-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
254
254
#define MMC_CAP_UHS_SDR50       (1 << 17)       /* Host supports UHS SDR50 mode */
255
255
#define MMC_CAP_UHS_SDR104      (1 << 18)       /* Host supports UHS SDR104 mode */
256
256
#define MMC_CAP_UHS_DDR50       (1 << 19)       /* Host supports UHS DDR50 mode */
 
257
#define MMC_CAP_RUNTIME_RESUME  (1 << 20)       /* Resume at runtime_resume. */
257
258
#define MMC_CAP_DRIVER_TYPE_A   (1 << 23)       /* Host supports Driver Type A */
258
259
#define MMC_CAP_DRIVER_TYPE_C   (1 << 24)       /* Host supports Driver Type C */
259
260
#define MMC_CAP_DRIVER_TYPE_D   (1 << 25)       /* Host supports Driver Type D */
309
310
        spinlock_t              lock;           /* lock for claim and bus ops */
310
311
 
311
312
        struct mmc_ios          ios;            /* current io bus settings */
312
 
        u32                     ocr;            /* the current OCR setting */
313
313
 
314
314
        /* group bitfields together to minimize padding */
315
315
        unsigned int            use_spi_crc:1;
382
382
#define mmc_classdev(x) (&(x)->class_dev)
383
383
#define mmc_hostname(x) (dev_name(&(x)->class_dev))
384
384
 
385
 
int mmc_suspend_host(struct mmc_host *);
386
 
int mmc_resume_host(struct mmc_host *);
387
 
 
388
385
int mmc_power_save_host(struct mmc_host *host);
389
386
int mmc_power_restore_host(struct mmc_host *host);
390
387