Skip to content

Commit b7a5486

Browse files
author
Fox Snowpatch
committed
1 parent 484dba3 commit b7a5486

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

drivers/macintosh/adb.c

+6-4
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ static struct adb_driver *adb_driver_list[] = {
7474
NULL
7575
};
7676

77-
static struct class *adb_dev_class;
77+
static const struct class adb_dev_class = {
78+
.name = "adb",
79+
};
7880

7981
static struct adb_driver *adb_controller;
8082
BLOCKING_NOTIFIER_HEAD(adb_client_list);
@@ -888,10 +890,10 @@ adbdev_init(void)
888890
return;
889891
}
890892

891-
adb_dev_class = class_create("adb");
892-
if (IS_ERR(adb_dev_class))
893+
if (class_register(&adb_dev_class))
893894
return;
894-
device_create(adb_dev_class, NULL, MKDEV(ADB_MAJOR, 0), NULL, "adb");
895+
896+
device_create(&adb_dev_class, NULL, MKDEV(ADB_MAJOR, 0), NULL, "adb");
895897

896898
platform_device_register(&adb_pfdev);
897899
platform_driver_probe(&adb_pfdrv, adb_dummy_probe);

0 commit comments

Comments
 (0)