Lines Matching full:hotplug
118 * Registering a client generates a hotplug event that allows the client
120 * initialized its state to able to handle the hotplug event successfully.
130 if (client->funcs && client->funcs->hotplug) { in drm_client_register()
132 * Perform an initial hotplug event to pick up the in drm_client_register()
135 * in the list of clients, or a concurrent hotplug in drm_client_register()
138 * Hold the clientlist_mutex as for a regular hotplug in drm_client_register()
141 ret = client->funcs->hotplug(client); in drm_client_register()
143 drm_dbg_kms(dev, "client hotplug ret=%d\n", ret); in drm_client_register()
196 * drm_client_dev_hotplug - Send hotplug event to clients
199 * This function calls the &drm_client_funcs.hotplug callback on the attached clients.
213 drm_dbg_kms(dev, "No connectors found, will not send hotplug events!\n"); in drm_client_dev_hotplug()
219 if (!client->funcs || !client->funcs->hotplug) in drm_client_dev_hotplug()
225 ret = client->funcs->hotplug(client); in drm_client_dev_hotplug()