Commit 12033caf authored by Alexandru Gheorghiu's avatar Alexandru Gheorghiu Committed by Gustavo Padovan
Browse files

Bluetooth: Use PTR_RET function



Used PTR_RET function instead of IS_ERR and PTR_ERR.
Patch found using coccinelle.

Signed-off-by: default avatarAlexandru Gheorghiu <gheorghiuandru@gmail.com>
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent 77189df4
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -590,10 +590,8 @@ int __init bt_sysfs_init(void)
	bt_debugfs = debugfs_create_dir("bluetooth", NULL);

	bt_class = class_create(THIS_MODULE, "bluetooth");
	if (IS_ERR(bt_class))
		return PTR_ERR(bt_class);

	return 0;
	return PTR_RET(bt_class);
}

void bt_sysfs_cleanup(void)