diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2015-12-04 03:46:06 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2015-12-08 10:13:54 -0500 |
commit | 7f8ee3e59c9a484bdb117a0074a90173388efb25 (patch) | |
tree | 20665a0faaa2917b5a212bca7fd895e723b99e13 | |
parent | 4ee6034c80c50b6e788f0f4291c3ad64debde390 (diff) |
drm/atomic-helper: Mention the new system/resume helpers the docs
They have pretty kerneldoc already, but better to link to that in
one of the overview sections.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1449218769-16577-26-git-send-email-daniel.vetter@ffwll.ch
Reviewed-by: Thierry Reding <treding@nvidia.com>
-rw-r--r-- | drivers/gpu/drm/drm_atomic_helper.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c index ab275499d2a3..110f3db8dd05 100644 --- a/drivers/gpu/drm/drm_atomic_helper.c +++ b/drivers/gpu/drm/drm_atomic_helper.c | |||
@@ -2405,6 +2405,12 @@ EXPORT_SYMBOL(drm_atomic_helper_connector_dpms); | |||
2405 | * The simpler solution is to just reset the software state to everything off, | 2405 | * The simpler solution is to just reset the software state to everything off, |
2406 | * which is easiest to do by calling drm_mode_config_reset(). To facilitate this | 2406 | * which is easiest to do by calling drm_mode_config_reset(). To facilitate this |
2407 | * the atomic helpers provide default reset implementations for all hooks. | 2407 | * the atomic helpers provide default reset implementations for all hooks. |
2408 | * | ||
2409 | * On the upside the precise state tracking of atomic simplifies system suspend | ||
2410 | * and resume a lot. For drivers using drm_mode_config_reset() a complete recipe | ||
2411 | * is implemented in drm_atomic_helper_suspend() and drm_atomic_helper_resume(). | ||
2412 | * For other drivers the building blocks are split out, see the documentation | ||
2413 | * for these functions. | ||
2408 | */ | 2414 | */ |
2409 | 2415 | ||
2410 | /** | 2416 | /** |