diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-sh/bus-sh.h | 2 | ||||
-rw-r--r-- | include/linux/mmc/host.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-sh/bus-sh.h b/include/asm-sh/bus-sh.h index f782a33a98fa..83c5d2fd057f 100644 --- a/include/asm-sh/bus-sh.h +++ b/include/asm-sh/bus-sh.h @@ -34,7 +34,7 @@ struct sh_driver { unsigned int bus_id; int (*probe)(struct sh_dev *); int (*remove)(struct sh_dev *); - int (*suspend)(struct sh_dev *, u32); + int (*suspend)(struct sh_dev *, pm_message_t); int (*resume)(struct sh_dev *); }; diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index f67686cef62a..f90f674eb3b0 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h @@ -98,7 +98,7 @@ extern void mmc_free_host(struct mmc_host *); #define mmc_priv(x) ((void *)((x) + 1)) #define mmc_dev(x) ((x)->dev) -extern int mmc_suspend_host(struct mmc_host *, u32); +extern int mmc_suspend_host(struct mmc_host *, pm_message_t); extern int mmc_resume_host(struct mmc_host *); extern void mmc_detect_change(struct mmc_host *); |