summaryrefslogtreecommitdiff
path: root/src/udev
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-04-11 11:38:34 -0400
committerAnthony G. Basile <blueness@gentoo.org>2015-04-12 13:19:44 -0400
commit310868f14ab0a09d079b3bd2e55bb6a56022433d (patch)
treea93fa61b4b5554797a4afa1cc7917e339a14df08 /src/udev
parentcdbef8fd5a933de71c57cb1b4e337f1616f4a034 (diff)
udev-builtin-keyboard: make error messages more standard
- No need to add "Error, " prefix, we already have that as metadata. - Also use double quotes for path names, as in most other places. - Remove stray newline at end of message. - Downgrade error messages after which we continue to warnings. Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/udev')
-rw-r--r--src/udev/udev-builtin-keyboard.c28
1 files changed, 13 insertions, 15 deletions
diff --git a/src/udev/udev-builtin-keyboard.c b/src/udev/udev-builtin-keyboard.c
index eaa21abf60..cd13e4aa3d 100644
--- a/src/udev/udev-builtin-keyboard.c
+++ b/src/udev/udev-builtin-keyboard.c
@@ -84,7 +84,7 @@ static void map_keycode(int fd, const char *devnode, int scancode, const char *k
/* check if it's a numeric code already */
keycode_num = strtoul(keycode, &endptr, 0);
if (endptr[0] !='\0') {
- log_error("Error, unknown key identifier '%s'", keycode);
+ log_error("Unknown key identifier '%s'", keycode);
return;
}
}
@@ -127,8 +127,7 @@ static void override_abs(int fd, const char *devnode,
rc = ioctl(fd, EVIOCGABS(evcode), &absinfo);
if (rc < 0) {
- log_error_errno(errno, "Error, unable to EVIOCGABS device '%s'",
- devnode);
+ log_error_errno(errno, "Unable to EVIOCGABS device \"%s\"", devnode);
return;
}
@@ -138,18 +137,17 @@ static void override_abs(int fd, const char *devnode,
next = parse_token(next, &absinfo.fuzz);
next = parse_token(next, &absinfo.flat);
if (!next) {
- log_error("Error, unable to parse EV_ABS override '%s' for '%s'\n",
- value, devnode);
+ log_error("Unable to parse EV_ABS override '%s' for '%s'", value, devnode);
return;
}
- log_debug("keyboard: override %x with %d/%d/%d/%d/%d", evcode,
- absinfo.minimum, absinfo.maximum, absinfo.resolution,
- absinfo.fuzz, absinfo.flat);
+ log_debug("keyboard: %x overriden with %"PRIi32"/%"PRIi32"/%"PRIi32"/%"PRIi32"/%"PRIi32" for \"%s\"",
+ evcode,
+ absinfo.minimum, absinfo.maximum, absinfo.resolution, absinfo.fuzz, absinfo.flat,
+ devnode);
rc = ioctl(fd, EVIOCSABS(evcode), &absinfo);
if (rc < 0)
- log_error_errno(errno, "Error, unable to update device '%s'",
- devnode);
+ log_error_errno(errno, "Unable to EVIOCSABS device \"%s\"", devnode);
}
static int open_device(const char *devnode) {
@@ -157,9 +155,9 @@ static int open_device(const char *devnode) {
fd = open(devnode, O_RDWR|O_CLOEXEC|O_NONBLOCK|O_NOCTTY);
if (fd < 0)
- log_error_errno(errno, "Error, opening device '%s': %m", devnode);
+ return log_error_errno(errno, "Error opening device \"%s\": %m", devnode);
- return fd < 0 ? -errno : fd;
+ return fd;
}
static int builtin_keyboard(struct udev_device *dev, int argc, char *argv[], bool test) {
@@ -171,7 +169,7 @@ static int builtin_keyboard(struct udev_device *dev, int argc, char *argv[], boo
node = udev_device_get_devnode(dev);
if (!node) {
- log_error("Error, no device node for '%s'", udev_device_get_syspath(dev));
+ log_error("No device node for \"%s\"", udev_device_get_syspath(dev));
return EXIT_FAILURE;
}
@@ -187,7 +185,7 @@ static int builtin_keyboard(struct udev_device *dev, int argc, char *argv[], boo
/* KEYBOARD_KEY_<hex scan code>=<key identifier string> */
scancode = strtoul(key + 13, &endptr, 16);
if (endptr[0] != '\0') {
- log_error("Error, unable to parse scan code from '%s'", key);
+ log_warning("Unable to parse scan code from \"%s\"", key);
continue;
}
@@ -218,7 +216,7 @@ static int builtin_keyboard(struct udev_device *dev, int argc, char *argv[], boo
/* EVDEV_ABS_<EV_ABS code>=<min>:<max>:<res>:<fuzz>:<flat> */
evcode = strtoul(key + 10, &endptr, 16);
if (endptr[0] != '\0') {
- log_error("Error, unable to parse EV_ABS code from '%s'", key);
+ log_warning("Unable to parse EV_ABS code from \"%s\"", key);
continue;
}