From: Martin Schwidefsky Add the missing NULL argument to the class_device_create calls. Signed-off-by: Martin Schwidefsky Signed-off-by: Andrew Morton --- drivers/s390/char/raw3270.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/s390/char/raw3270.c~s390-fix-class_device_create-calls-in-3270-the-driver drivers/s390/char/raw3270.c --- 25/drivers/s390/char/raw3270.c~s390-fix-class_device_create-calls-in-3270-the-driver Thu Nov 17 14:51:41 2005 +++ 25-akpm/drivers/s390/char/raw3270.c Thu Nov 17 14:51:41 2005 @@ -1179,12 +1179,12 @@ raw3270_create_attributes(struct raw3270 //FIXME: check return code sysfs_create_group(&rp->cdev->dev.kobj, &raw3270_attr_group); rp->clttydev = - class_device_create(class3270, + class_device_create(class3270, NULL, MKDEV(IBM_TTY3270_MAJOR, rp->minor), &rp->cdev->dev, "tty%s", rp->cdev->dev.bus_id); rp->cltubdev = - class_device_create(class3270, + class_device_create(class3270, NULL, MKDEV(IBM_FS3270_MAJOR, rp->minor), &rp->cdev->dev, "tub%s", rp->cdev->dev.bus_id); _