X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=drivers%2Fmacintosh%2Fadb.c;h=360f93f6fcdb55de9941c14e38349c82a59f516b;hb=6700efdfc06d2dc9ef77988a00182c2ede0f1be0;hp=34fcabac5fdbc06aa6e9e7ac88a427c4e6423c06;hpb=fdccffc6b711d1bfcd1e1b569537686dcad423e2;p=powerpc.git diff --git a/drivers/macintosh/adb.c b/drivers/macintosh/adb.c index 34fcabac5f..360f93f6fc 100644 --- a/drivers/macintosh/adb.c +++ b/drivers/macintosh/adb.c @@ -16,7 +16,6 @@ * - move bus probe to a kernel thread */ -#include #include #include #include @@ -36,12 +35,12 @@ #include #include #include -#include #include #include #ifdef CONFIG_PPC #include +#include #endif @@ -294,7 +293,7 @@ int __init adb_init(void) int i; #ifdef CONFIG_PPC32 - if ( (_machine != _MACH_chrp) && (_machine != _MACH_Pmac) ) + if (!machine_is(chrp) && !machine_is(powermac)) return 0; #endif #ifdef CONFIG_MAC @@ -903,8 +902,6 @@ adbdev_init(void) return; } - devfs_mk_cdev(MKDEV(ADB_MAJOR, 0), S_IFCHR | S_IRUSR | S_IWUSR, "adb"); - adb_dev_class = class_create(THIS_MODULE, "adb"); if (IS_ERR(adb_dev_class)) return;