Index: uspace/app/sportdmp/sportdmp.c
===================================================================
--- uspace/app/sportdmp/sportdmp.c	(revision c477c804d1208352d69c7b069a54d3e3b650ff96)
+++ uspace/app/sportdmp/sportdmp.c	(revision 3e40b4e9235e7e81eea2138e19c5b7ce8fe7ebe7)
@@ -146,5 +146,6 @@
 
 	while (true) {
-		rc = chardev_read(chardev, buf, BUF_SIZE, &nread);
+		rc = chardev_read(chardev, buf, BUF_SIZE, &nread,
+		    chardev_f_none);
 		for (size_t i = 0; i < nread; i++) {
 			printf("%02hhx ", buf[i]);
Index: uspace/app/tester/chardev/chardev1.c
===================================================================
--- uspace/app/tester/chardev/chardev1.c	(revision c477c804d1208352d69c7b069a54d3e3b650ff96)
+++ uspace/app/tester/chardev/chardev1.c	(revision 3e40b4e9235e7e81eea2138e19c5b7ce8fe7ebe7)
@@ -1,4 +1,4 @@
 /*
- * Copyright (c) 2017 Jiri Svoboda
+ * Copyright (c) 2019 Jiri Svoboda
  * All rights reserved.
  *
@@ -76,5 +76,6 @@
 	TPRINTF("Sent %zu bytes\n", nbytes);
 
-	rc = chardev_read(chardev, small_buffer, SMALL_BUFFER_SIZE, &nbytes);
+	rc = chardev_read(chardev, small_buffer, SMALL_BUFFER_SIZE, &nbytes,
+	    chardev_f_none);
 	if (rc != EOK) {
 		chardev_close(chardev);
@@ -128,5 +129,6 @@
 	TPRINTF("Sent %zu bytes\n", nbytes);
 
-	rc = chardev_read(chardev, large_buffer, LARGE_BUFFER_SIZE, &nbytes);
+	rc = chardev_read(chardev, large_buffer, LARGE_BUFFER_SIZE, &nbytes,
+	    chardev_f_none);
 	if (rc != EOK) {
 		chardev_close(chardev);
@@ -181,5 +183,6 @@
 	    str_error_name(rc));
 
-	rc = chardev_read(chardev, small_buffer, SMALL_BUFFER_SIZE, &nbytes);
+	rc = chardev_read(chardev, small_buffer, SMALL_BUFFER_SIZE, &nbytes,
+	    chardev_f_none);
 	if (rc != EIO || nbytes != 1) {
 		chardev_close(chardev);
Index: uspace/app/tester/hw/serial/serial1.c
===================================================================
--- uspace/app/tester/hw/serial/serial1.c	(revision c477c804d1208352d69c7b069a54d3e3b650ff96)
+++ uspace/app/tester/hw/serial/serial1.c	(revision 3e40b4e9235e7e81eea2138e19c5b7ce8fe7ebe7)
@@ -136,5 +136,6 @@
 	while (total < cnt) {
 
-		rc = chardev_read(chardev, buf, cnt - total, &nread);
+		rc = chardev_read(chardev, buf, cnt - total, &nread,
+		    chardev_f_none);
 		if (rc != EOK) {
 			(void) serial_set_comm_props(serial, old_baud,
