Loading Documentation/DocBook/drm.tmpl +8 −1 Original line number Diff line number Diff line Loading @@ -2534,7 +2534,7 @@ void intel_crt_init(struct drm_device *dev) </tr> <tr> <td rowspan="21" valign="top" >DRM</td> <td rowspan="2" valign="top" >Generic</td> <td rowspan="3" valign="top" >Generic</td> <td valign="top" >“EDID”</td> <td valign="top" >BLOB | IMMUTABLE</td> <td valign="top" >0</td> Loading @@ -2549,6 +2549,13 @@ void intel_crt_init(struct drm_device *dev) <td valign="top" >Contains DPMS operation mode value.</td> </tr> <tr> <td valign="top" >“PATH”</td> <td valign="top" >BLOB | IMMUTABLE</td> <td valign="top" >0</td> <td valign="top" >Connector</td> <td valign="top" >Contains topology path to a connector.</td> </tr> <tr> <td rowspan="1" valign="top" >Plane</td> <td valign="top" >“type”</td> <td valign="top" >ENUM | IMMUTABLE</td> Loading drivers/gpu/drm/drm_crtc.c +13 −0 Original line number Diff line number Diff line Loading @@ -4005,6 +4005,19 @@ int drm_mode_getblob_ioctl(struct drm_device *dev, return ret; } /** * drm_mode_connector_set_path_property - set tile property on connector * @connector: connector to set property on. * @path: path to use for property. * * This creates a property to expose to userspace to specify a * connector path. This is mainly used for DisplayPort MST where * connectors have a topology and we want to allow userspace to give * them more meaningful names. * * Returns: * Zero on success, errno on failure. */ int drm_mode_connector_set_path_property(struct drm_connector *connector, char *path) { Loading Loading
Documentation/DocBook/drm.tmpl +8 −1 Original line number Diff line number Diff line Loading @@ -2534,7 +2534,7 @@ void intel_crt_init(struct drm_device *dev) </tr> <tr> <td rowspan="21" valign="top" >DRM</td> <td rowspan="2" valign="top" >Generic</td> <td rowspan="3" valign="top" >Generic</td> <td valign="top" >“EDID”</td> <td valign="top" >BLOB | IMMUTABLE</td> <td valign="top" >0</td> Loading @@ -2549,6 +2549,13 @@ void intel_crt_init(struct drm_device *dev) <td valign="top" >Contains DPMS operation mode value.</td> </tr> <tr> <td valign="top" >“PATH”</td> <td valign="top" >BLOB | IMMUTABLE</td> <td valign="top" >0</td> <td valign="top" >Connector</td> <td valign="top" >Contains topology path to a connector.</td> </tr> <tr> <td rowspan="1" valign="top" >Plane</td> <td valign="top" >“type”</td> <td valign="top" >ENUM | IMMUTABLE</td> Loading
drivers/gpu/drm/drm_crtc.c +13 −0 Original line number Diff line number Diff line Loading @@ -4005,6 +4005,19 @@ int drm_mode_getblob_ioctl(struct drm_device *dev, return ret; } /** * drm_mode_connector_set_path_property - set tile property on connector * @connector: connector to set property on. * @path: path to use for property. * * This creates a property to expose to userspace to specify a * connector path. This is mainly used for DisplayPort MST where * connectors have a topology and we want to allow userspace to give * them more meaningful names. * * Returns: * Zero on success, errno on failure. */ int drm_mode_connector_set_path_property(struct drm_connector *connector, char *path) { Loading