diff options
-rw-r--r-- | drivers/char/hvc_iucv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/hvc_iucv.c b/drivers/char/hvc_iucv.c index 5ea7d7713fca..a80d92233169 100644 --- a/drivers/char/hvc_iucv.c +++ b/drivers/char/hvc_iucv.c | |||
@@ -78,8 +78,8 @@ static void hvc_iucv_msg_pending(struct iucv_path *, struct iucv_message *); | |||
78 | static void hvc_iucv_msg_complete(struct iucv_path *, struct iucv_message *); | 78 | static void hvc_iucv_msg_complete(struct iucv_path *, struct iucv_message *); |
79 | 79 | ||
80 | 80 | ||
81 | /* Kernel module parameters */ | 81 | /* Kernel module parameter: use one terminal device as default */ |
82 | static unsigned long hvc_iucv_devices; | 82 | static unsigned long hvc_iucv_devices = 1; |
83 | 83 | ||
84 | /* Array of allocated hvc iucv tty lines... */ | 84 | /* Array of allocated hvc iucv tty lines... */ |
85 | static struct hvc_iucv_private *hvc_iucv_table[MAX_HVC_IUCV_LINES]; | 85 | static struct hvc_iucv_private *hvc_iucv_table[MAX_HVC_IUCV_LINES]; |
@@ -743,7 +743,7 @@ static int __init hvc_iucv_alloc(int id) | |||
743 | } | 743 | } |
744 | 744 | ||
745 | /* setup iucv related information */ | 745 | /* setup iucv related information */ |
746 | snprintf(name, 9, "ihvc%-4d", id); | 746 | snprintf(name, 9, "lnxhvc%-2d", id); |
747 | memcpy(priv->srv_name, name, 8); | 747 | memcpy(priv->srv_name, name, 8); |
748 | ASCEBC(priv->srv_name, 8); | 748 | ASCEBC(priv->srv_name, 8); |
749 | 749 | ||