aboutsummaryrefslogtreecommitdiff
path: root/pc-bios/s390-ccw
diff options
context:
space:
mode:
authorJanosch Frank <frankja@linux.ibm.com>2020-06-24 03:52:23 -0400
committerThomas Huth <thuth@redhat.com>2020-07-02 10:00:42 +0200
commit78182aea78257edc6b03a167cf7159479aa2ae06 (patch)
tree9a0b56ad0cedd5d64e7b9798dc2134780ea87276 /pc-bios/s390-ccw
parentadd923b72e76080ca5339a27d58ed13566156935 (diff)
downloadqemu-78182aea78257edc6b03a167cf7159479aa2ae06.zip
qemu-78182aea78257edc6b03a167cf7159479aa2ae06.tar.gz
qemu-78182aea78257edc6b03a167cf7159479aa2ae06.tar.bz2
pc-bios: s390x: Use ebcdic2ascii table
Why should we do conversion of a ebcdic value if we have a handy table where we could look up the ascii value instead? Signed-off-by: Janosch Frank <frankja@linux.ibm.com> Reviewed-by: David Hildenbrand <david@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20200624075226.92728-10-frankja@linux.ibm.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'pc-bios/s390-ccw')
-rw-r--r--pc-bios/s390-ccw/bootmap.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/pc-bios/s390-ccw/bootmap.c b/pc-bios/s390-ccw/bootmap.c
index d13b7cb..9720567 100644
--- a/pc-bios/s390-ccw/bootmap.c
+++ b/pc-bios/s390-ccw/bootmap.c
@@ -328,9 +328,7 @@ static void print_eckd_ldl_msg(ECKD_IPL_mode_t mode)
msg[0] = '2';
break;
default:
- msg[0] = vlbl->LDL_version;
- msg[0] &= 0x0f; /* convert EBCDIC */
- msg[0] |= 0x30; /* to ASCII (digit) */
+ msg[0] = ebc2asc[vlbl->LDL_version];
msg[1] = '?';
break;
}