diff options
Diffstat (limited to 'drivers/s390/char/tape_char.c')
-rw-r--r-- | drivers/s390/char/tape_char.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/s390/char/tape_char.c b/drivers/s390/char/tape_char.c index b830a8cbef78..ebe84067bae9 100644 --- a/drivers/s390/char/tape_char.c +++ b/drivers/s390/char/tape_char.c | |||
@@ -83,9 +83,9 @@ tapechar_setup_device(struct tape_device * device) | |||
83 | void | 83 | void |
84 | tapechar_cleanup_device(struct tape_device *device) | 84 | tapechar_cleanup_device(struct tape_device *device) |
85 | { | 85 | { |
86 | unregister_tape_dev(device->rt); | 86 | unregister_tape_dev(&device->cdev->dev, device->rt); |
87 | device->rt = NULL; | 87 | device->rt = NULL; |
88 | unregister_tape_dev(device->nt); | 88 | unregister_tape_dev(&device->cdev->dev, device->nt); |
89 | device->nt = NULL; | 89 | device->nt = NULL; |
90 | } | 90 | } |
91 | 91 | ||