mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-04 18:58:04 +02:00
[drm-sysfs] connected is ambigious in the context of a connector, replace with enabled
This commit is contained in:
parent
47c8f31741
commit
d5ca5c9cd3
1 changed files with 4 additions and 5 deletions
|
|
@ -176,17 +176,16 @@ static ssize_t dpms_show(struct device *device,
|
|||
return snprintf(buf, PAGE_SIZE, "%s", drm_get_dpms_name((int)dpms_status));
|
||||
}
|
||||
|
||||
static ssize_t connected_show(struct device *device,
|
||||
static ssize_t enabled_show(struct device *device,
|
||||
struct device_attribute *attr,
|
||||
char *buf)
|
||||
{
|
||||
struct drm_connector *connector = container_of(device, struct drm_connector, kdev);
|
||||
struct drm_device *dev = connector->dev;
|
||||
|
||||
if (connector->encoder)
|
||||
return snprintf(buf, PAGE_SIZE, "connected");
|
||||
return snprintf(buf, PAGE_SIZE, "enabled");
|
||||
else
|
||||
return snprintf(buf, PAGE_SIZE, "disconnected");
|
||||
return snprintf(buf, PAGE_SIZE, "disabled");
|
||||
}
|
||||
|
||||
static ssize_t edid_show(struct kobject *kobj, struct bin_attribute *attr,
|
||||
|
|
@ -234,7 +233,7 @@ static ssize_t modes_show(struct device *device,
|
|||
|
||||
static struct device_attribute connector_attrs[] = {
|
||||
__ATTR_RO(status),
|
||||
__ATTR_RO(connected),
|
||||
__ATTR_RO(enabled),
|
||||
__ATTR_RO(dpms),
|
||||
__ATTR_RO(modes),
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue