Index: uspace/lib/device/include/hr.h
===================================================================
--- uspace/lib/device/include/hr.h	(revision 6784abcc49550b0cd5dbc158b309eccd974ef3d8)
+++ uspace/lib/device/include/hr.h	(revision eb31781ee320c40a64471040c54c70a2542e9ddd)
@@ -109,5 +109,5 @@
 	size_t bsize;
 	hr_vol_status_t status;
-	uint8_t RLQ;
+	uint8_t layout;
 } hr_vol_info_t;
 
Index: uspace/lib/device/src/hr.c
===================================================================
--- uspace/lib/device/src/hr.c	(revision 6784abcc49550b0cd5dbc158b309eccd974ef3d8)
+++ uspace/lib/device/src/hr.c	(revision eb31781ee320c40a64471040c54c70a2542e9ddd)
@@ -134,5 +134,5 @@
 	if (vol_info->level == HR_LVL_4 || vol_info->level == HR_LVL_5) {
 		printf("layout: %s\n",
-		    hr_get_layout_str(vol_info->level, vol_info->RLQ));
+		    hr_get_layout_str(vol_info->level, vol_info->layout));
 	}
 	if (vol_info->level == HR_LVL_0 || vol_info->level == HR_LVL_4) {
@@ -163,7 +163,7 @@
 		}
 		if (vol_info->level == HR_LVL_4) {
-			if ((i == 0 && vol_info->RLQ == HR_RLQ_RAID4_0) ||
+			if ((i == 0 && vol_info->layout == HR_RLQ_RAID4_0) ||
 			    (i == vol_info->extent_no - 1 &&
-			    vol_info->RLQ == HR_RLQ_RAID4_N))
+			    vol_info->layout == HR_RLQ_RAID4_N))
 				printf("          P   %s    %zu       %s\n", hr_get_ext_status_msg(ext->status), i, devname);
 			else
@@ -350,9 +350,9 @@
 }
 
-const char *hr_get_layout_str(hr_level_t level, uint8_t RLQ)
+const char *hr_get_layout_str(hr_level_t level, uint8_t layout)
 {
 	switch (level) {
 	case HR_LVL_4:
-		switch (RLQ) {
+		switch (layout) {
 		case HR_RLQ_RAID4_0:
 			return "RAID-4 Non-Rotating Parity 0";
@@ -363,5 +363,5 @@
 		}
 	case HR_LVL_5:
-		switch (RLQ) {
+		switch (layout) {
 		case HR_RLQ_RAID5_0R:
 			return "RAID-5 Rotating Parity 0 with Data Restart";
