From 123d2e75a14e8a21cecac3f3452221ba901f8111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=B6ppner?= Date: Thu, 19 Feb 2026 12:05:53 +0100 Subject: [PATCH] s390/tape: Fix device driver name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Recent cleanups and code consolidations in the s390 tape device driver renamed files and function namespaces from tape_34xx to tape_3490 to better reflect the single support of the IBM 3490E device in the codebase. These changes also renamed the driver name to tape_3490, which consequently broke userspace as the sysfs driver path is now /sys/bus/ccw/drivers/tape_3490/ instead of /sys/bus/ccw/drivers/tape_34xx/. Change the device driver name back to tape_34xx to fix userspace. Fixes: 9872dae6102e ("s390/tape: Rename tape_34xx.c to tape_3490.c") Reported-by: Alexander Egorenkov Reviewed-by: Jens Remus Tested-by: Alexander Egorenkov Signed-off-by: Jan Höppner Signed-off-by: Heiko Carstens --- drivers/s390/char/tape_3490.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/s390/char/tape_3490.c b/drivers/s390/char/tape_3490.c index c4ea32af1b65..7302f1121553 100644 --- a/drivers/s390/char/tape_3490.c +++ b/drivers/s390/char/tape_3490.c @@ -784,7 +784,7 @@ tape_3490_online(struct ccw_device *cdev) static struct ccw_driver tape_3490_driver = { .driver = { - .name = "tape_3490", + .name = "tape_34xx", .owner = THIS_MODULE, }, .ids = tape_3490_ids,