diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2005-10-29 02:06:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-29 13:35:07 -0400 |
commit | f6b52e85a5d022008fe9f99eab7c9f41f155e3cd (patch) | |
tree | 5fecf0c488bbabacd272db0ea82e3f498317485d /drivers/s390 | |
parent | 2d3c0b7bedfd7a8e1870a046a434bd467e7c5349 (diff) |
[PATCH] arguments out of order in class_device_create() call (s390)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/s390')
-rw-r--r-- | drivers/s390/char/vmlogrdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/char/vmlogrdr.c b/drivers/s390/char/vmlogrdr.c index a107fec4457a..b2d75de144c6 100644 --- a/drivers/s390/char/vmlogrdr.c +++ b/drivers/s390/char/vmlogrdr.c | |||
@@ -787,8 +787,8 @@ vmlogrdr_register_device(struct vmlogrdr_priv_t *priv) { | |||
787 | return ret; | 787 | return ret; |
788 | } | 788 | } |
789 | priv->class_device = class_device_create( | 789 | priv->class_device = class_device_create( |
790 | NULL, | ||
791 | vmlogrdr_class, | 790 | vmlogrdr_class, |
791 | NULL, | ||
792 | MKDEV(vmlogrdr_major, priv->minor_num), | 792 | MKDEV(vmlogrdr_major, priv->minor_num), |
793 | dev, | 793 | dev, |
794 | "%s", dev->bus_id ); | 794 | "%s", dev->bus_id ); |