diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2017-01-25 01:26:47 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2017-01-25 10:22:42 -0500 |
commit | ef40cbf9998528e4f4457df52624d56ae95a7dee (patch) | |
tree | c1f53982ba584df5c47932e051ceb6757cbd5b8e /drivers/gpu/drm/drm_auth.c | |
parent | 940eba2d58a7dad5cb5dd90458c682e4d929e6f2 (diff) |
drm/core: Use recommened kerneldoc for struct member refs
I just learned that &struct_name.member_name works and looks pretty
even. It doesn't (yet) link to the member directly though, which would
be really good for big structures or vfunc tables (where the
per-member kerneldoc tends to be long).
Also some minor drive-by polish where it makes sense, I read a lot
of docs ...
v2: Review from Gustavo.
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Gustavo Padovan <gustavo.padovan@collabora.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170125062657.19270-6-daniel.vetter@ffwll.ch
Diffstat (limited to 'drivers/gpu/drm/drm_auth.c')
-rw-r--r-- | drivers/gpu/drm/drm_auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_auth.c b/drivers/gpu/drm/drm_auth.c index 860cfe124c2a..7ff697389d74 100644 --- a/drivers/gpu/drm/drm_auth.c +++ b/drivers/gpu/drm/drm_auth.c | |||
@@ -40,8 +40,8 @@ | |||
40 | * least once successfully became the device master (either through the | 40 | * least once successfully became the device master (either through the |
41 | * SET_MASTER IOCTL, or implicitly through opening the primary device node when | 41 | * SET_MASTER IOCTL, or implicitly through opening the primary device node when |
42 | * no one else is the current master that time) there exists one &drm_master. | 42 | * no one else is the current master that time) there exists one &drm_master. |
43 | * This is noted in the is_master member of &drm_file. All other clients have | 43 | * This is noted in &drm_file.is_master. All other clients have just a pointer |
44 | * just a pointer to the &drm_master they are associated with. | 44 | * to the &drm_master they are associated with. |
45 | * | 45 | * |
46 | * In addition only one &drm_master can be the current master for a &drm_device. | 46 | * In addition only one &drm_master can be the current master for a &drm_device. |
47 | * It can be switched through the DROP_MASTER and SET_MASTER IOCTL, or | 47 | * It can be switched through the DROP_MASTER and SET_MASTER IOCTL, or |