diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ppc/macio.h | 2 | ||||
-rw-r--r-- | include/asm-ppc/ocp.h | 2 | ||||
-rw-r--r-- | include/asm-ppc/of_device.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-ppc/macio.h b/include/asm-ppc/macio.h index 00605bb88b2a..2cafc9978607 100644 --- a/include/asm-ppc/macio.h +++ b/include/asm-ppc/macio.h @@ -126,7 +126,7 @@ struct macio_driver int (*probe)(struct macio_dev* dev, const struct of_match *match); int (*remove)(struct macio_dev* dev); - int (*suspend)(struct macio_dev* dev, u32 state); + int (*suspend)(struct macio_dev* dev, pm_message_t state); int (*resume)(struct macio_dev* dev); int (*shutdown)(struct macio_dev* dev); diff --git a/include/asm-ppc/ocp.h b/include/asm-ppc/ocp.h index 5ea44cabfaa4..b98db3cdae83 100644 --- a/include/asm-ppc/ocp.h +++ b/include/asm-ppc/ocp.h @@ -119,7 +119,7 @@ struct ocp_driver { const struct ocp_device_id *id_table; /* NULL if wants all devices */ int (*probe) (struct ocp_device *dev); /* New device inserted */ void (*remove) (struct ocp_device *dev); /* Device removed (NULL if not a hot-plug capable driver) */ - int (*suspend) (struct ocp_device *dev, u32 state); /* Device suspended */ + int (*suspend) (struct ocp_device *dev, pm_message_t state); /* Device suspended */ int (*resume) (struct ocp_device *dev); /* Device woken up */ struct device_driver driver; }; diff --git a/include/asm-ppc/of_device.h b/include/asm-ppc/of_device.h index 14441c629010..7229735a7c18 100644 --- a/include/asm-ppc/of_device.h +++ b/include/asm-ppc/of_device.h @@ -55,7 +55,7 @@ struct of_platform_driver int (*probe)(struct of_device* dev, const struct of_match *match); int (*remove)(struct of_device* dev); - int (*suspend)(struct of_device* dev, u32 state); + int (*suspend)(struct of_device* dev, pm_message_t state); int (*resume)(struct of_device* dev); int (*shutdown)(struct of_device* dev); |