diff options
Diffstat (limited to 'drivers/misc/phantom.c')
| -rw-r--r-- | drivers/misc/phantom.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/drivers/misc/phantom.c b/drivers/misc/phantom.c index 04c27266f567..779aa8ebe4cf 100644 --- a/drivers/misc/phantom.c +++ b/drivers/misc/phantom.c | |||
| @@ -497,12 +497,7 @@ static struct pci_driver phantom_pci_driver = { | |||
| 497 | .resume = phantom_resume | 497 | .resume = phantom_resume |
| 498 | }; | 498 | }; |
| 499 | 499 | ||
| 500 | static ssize_t phantom_show_version(struct class *cls, char *buf) | 500 | static CLASS_ATTR_STRING(version, 0444, PHANTOM_VERSION); |
| 501 | { | ||
| 502 | return sprintf(buf, PHANTOM_VERSION "\n"); | ||
| 503 | } | ||
| 504 | |||
| 505 | static CLASS_ATTR(version, 0444, phantom_show_version, NULL); | ||
| 506 | 501 | ||
| 507 | static int __init phantom_init(void) | 502 | static int __init phantom_init(void) |
| 508 | { | 503 | { |
| @@ -515,7 +510,7 @@ static int __init phantom_init(void) | |||
| 515 | printk(KERN_ERR "phantom: can't register phantom class\n"); | 510 | printk(KERN_ERR "phantom: can't register phantom class\n"); |
| 516 | goto err; | 511 | goto err; |
| 517 | } | 512 | } |
| 518 | retval = class_create_file(phantom_class, &class_attr_version); | 513 | retval = class_create_file(phantom_class, &class_attr_version.attr); |
| 519 | if (retval) { | 514 | if (retval) { |
| 520 | printk(KERN_ERR "phantom: can't create sysfs version file\n"); | 515 | printk(KERN_ERR "phantom: can't create sysfs version file\n"); |
| 521 | goto err_class; | 516 | goto err_class; |
| @@ -541,7 +536,7 @@ static int __init phantom_init(void) | |||
| 541 | err_unchr: | 536 | err_unchr: |
| 542 | unregister_chrdev_region(dev, PHANTOM_MAX_MINORS); | 537 | unregister_chrdev_region(dev, PHANTOM_MAX_MINORS); |
| 543 | err_attr: | 538 | err_attr: |
| 544 | class_remove_file(phantom_class, &class_attr_version); | 539 | class_remove_file(phantom_class, &class_attr_version.attr); |
| 545 | err_class: | 540 | err_class: |
| 546 | class_destroy(phantom_class); | 541 | class_destroy(phantom_class); |
| 547 | err: | 542 | err: |
| @@ -554,7 +549,7 @@ static void __exit phantom_exit(void) | |||
| 554 | 549 | ||
| 555 | unregister_chrdev_region(MKDEV(phantom_major, 0), PHANTOM_MAX_MINORS); | 550 | unregister_chrdev_region(MKDEV(phantom_major, 0), PHANTOM_MAX_MINORS); |
| 556 | 551 | ||
| 557 | class_remove_file(phantom_class, &class_attr_version); | 552 | class_remove_file(phantom_class, &class_attr_version.attr); |
| 558 | class_destroy(phantom_class); | 553 | class_destroy(phantom_class); |
| 559 | 554 | ||
| 560 | pr_debug("phantom: module successfully removed\n"); | 555 | pr_debug("phantom: module successfully removed\n"); |
