mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
drm: add newlines to text sysfs files
The contents of various simple text files in sysfs should end with a newline to make them easier to read from the console. Signed-off-by: Keith Packard <keithp@keithp.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
9863871bd1
commit
75185c929e
1 changed files with 3 additions and 3 deletions
|
@ -147,7 +147,7 @@ static ssize_t status_show(struct device *device,
|
||||||
enum drm_connector_status status;
|
enum drm_connector_status status;
|
||||||
|
|
||||||
status = connector->funcs->detect(connector);
|
status = connector->funcs->detect(connector);
|
||||||
return snprintf(buf, PAGE_SIZE, "%s",
|
return snprintf(buf, PAGE_SIZE, "%s\n",
|
||||||
drm_get_connector_status_name(status));
|
drm_get_connector_status_name(status));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -166,7 +166,7 @@ static ssize_t dpms_show(struct device *device,
|
||||||
if (ret)
|
if (ret)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
return snprintf(buf, PAGE_SIZE, "%s",
|
return snprintf(buf, PAGE_SIZE, "%s\n",
|
||||||
drm_get_dpms_name((int)dpms_status));
|
drm_get_dpms_name((int)dpms_status));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -176,7 +176,7 @@ static ssize_t enabled_show(struct device *device,
|
||||||
{
|
{
|
||||||
struct drm_connector *connector = to_drm_connector(device);
|
struct drm_connector *connector = to_drm_connector(device);
|
||||||
|
|
||||||
return snprintf(buf, PAGE_SIZE, connector->encoder ? "enabled" :
|
return snprintf(buf, PAGE_SIZE, "%s\n", connector->encoder ? "enabled" :
|
||||||
"disabled");
|
"disabled");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue