diff options
author | Dave Airlie <airlied@redhat.com> | 2008-02-20 10:02:20 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2008-02-20 10:05:12 +1000 |
commit | b932ccb5674eb649133b5c33950405c37d17aab3 (patch) | |
tree | 8ba30575cb83cc8d7d35517871b15657d1c1ab19 /drivers/char/drm/drmP.h | |
parent | da636ad6a0d72eb5cb99738056af0bcc3db9ef9d (diff) |
drm: add support for passing state into the suspend hooks.
fix i915 driver to use state for hibernate save avoidance.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/char/drm/drmP.h')
-rw-r--r-- | drivers/char/drm/drmP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/drm/drmP.h b/drivers/char/drm/drmP.h index 19d3be5c4b2d..a6789f25009b 100644 --- a/drivers/char/drm/drmP.h +++ b/drivers/char/drm/drmP.h @@ -568,7 +568,7 @@ struct drm_driver { void (*postclose) (struct drm_device *, struct drm_file *); void (*lastclose) (struct drm_device *); int (*unload) (struct drm_device *); - int (*suspend) (struct drm_device *); + int (*suspend) (struct drm_device *, pm_message_t state); int (*resume) (struct drm_device *); int (*dma_ioctl) (struct drm_device *dev, void *data, struct drm_file *file_priv); void (*dma_ready) (struct drm_device *); |