diff options
author | Alexandru Gheorghiu <gheorghiuandru@gmail.com> | 2013-03-16 10:10:03 -0400 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2013-03-18 10:56:15 -0400 |
commit | 12033caf2380dbd28a497519eece9e92ccdca1c7 (patch) | |
tree | 66ff825e34811fb3e40821f1e7624913d3fc8f13 /net/bluetooth/hci_sysfs.c | |
parent | 77189df43114e85b563d039d0b7f23d4f8f71d79 (diff) |
Bluetooth: Use PTR_RET function
Used PTR_RET function instead of IS_ERR and PTR_ERR.
Patch found using coccinelle.
Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'net/bluetooth/hci_sysfs.c')
-rw-r--r-- | net/bluetooth/hci_sysfs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c index 23b4e242a31a..ff38561385de 100644 --- a/net/bluetooth/hci_sysfs.c +++ b/net/bluetooth/hci_sysfs.c | |||
@@ -590,10 +590,8 @@ int __init bt_sysfs_init(void) | |||
590 | bt_debugfs = debugfs_create_dir("bluetooth", NULL); | 590 | bt_debugfs = debugfs_create_dir("bluetooth", NULL); |
591 | 591 | ||
592 | bt_class = class_create(THIS_MODULE, "bluetooth"); | 592 | bt_class = class_create(THIS_MODULE, "bluetooth"); |
593 | if (IS_ERR(bt_class)) | ||
594 | return PTR_ERR(bt_class); | ||
595 | 593 | ||
596 | return 0; | 594 | return PTR_RET(bt_class); |
597 | } | 595 | } |
598 | 596 | ||
599 | void bt_sysfs_cleanup(void) | 597 | void bt_sysfs_cleanup(void) |