summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-03-02 11:56:15 +0100
committerSven Eden <yamakuzure@gmx.net>2018-05-30 07:59:11 +0200
commit3a6abba43b313be9eee5c07338f9c6f8a33b6d9f (patch)
tree1ff160c73ba68d96968aa35d4df9ac4d6068d1ad /src
parent6e7f88fe09dfe20e6c800313088c7bb03155b76f (diff)
logind: fix typo in comment
Diffstat (limited to 'src')
-rw-r--r--src/login/logind-session-device.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/login/logind-session-device.c b/src/login/logind-session-device.c
index ca0c512a1..e127a3e99 100644
--- a/src/login/logind-session-device.c
+++ b/src/login/logind-session-device.c
@@ -226,7 +226,7 @@ static int session_device_start(SessionDevice *sd) {
case DEVICE_TYPE_UNKNOWN:
default:
- /* fallback for devices wihout synchronizations */
+ /* fallback for devices without synchronizations */
break;
}
@@ -241,6 +241,7 @@ static void session_device_stop(SessionDevice *sd) {
return;
switch (sd->type) {
+
case DEVICE_TYPE_DRM:
/* On DRM devices we simply drop DRM-Master but keep it open.
* This allows the user to keep resources allocated. The
@@ -248,6 +249,7 @@ static void session_device_stop(SessionDevice *sd) {
* circumventing this. */
sd_drmdropmaster(sd->fd);
break;
+
case DEVICE_TYPE_EVDEV:
/* Revoke access on evdev file-descriptors during deactivation.
* This will basically prevent any operations on the fd and
@@ -255,6 +257,7 @@ static void session_device_stop(SessionDevice *sd) {
* protection this way. */
sd_eviocrevoke(sd->fd);
break;
+
case DEVICE_TYPE_UNKNOWN:
default:
/* fallback for devices without synchronization */
@@ -472,6 +475,7 @@ void session_device_resume_all(Session *s) {
continue;
if (session_device_save(sd) < 0)
continue;
+
session_device_notify(sd, SESSION_DEVICE_RESUME);
}
}