[adm5120] don't use mips_machgroup
authorGabor Juhos <juhosg@openwrt.org>
Wed, 30 Jan 2008 14:06:59 +0000 (14:06 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Wed, 30 Jan 2008 14:06:59 +0000 (14:06 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10328 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/adm5120/files/arch/mips/adm5120/prom.c
target/linux/adm5120/files/drivers/char/watchdog/adm5120_wdt.c
target/linux/adm5120/files/drivers/leds/leds-adm5120.c
target/linux/adm5120/files/drivers/usb/host/adm5120-drv.c
target/linux/adm5120/files/drivers/usb/host/adm5120-hcd.c

index e051d04..4ea9a6f 100644 (file)
@@ -264,7 +264,6 @@ void __init prom_putchar(char ch)
 
 void __init prom_init(void)
 {
-       mips_machgroup = MACH_GROUP_ADM5120;
        prom_detect_machtype();
 
        prom_init_cmdline();
index 2439fbc..cddb172 100644 (file)
@@ -186,10 +186,6 @@ static int __init watchdog_init(void)
 {
        int ret;
 
-       /* There should be check for ADM5120 */
-       if (mips_machgroup != MACH_GROUP_ADM5120)
-               return -1;
-
        ret = misc_register(&wdt_miscdev);
 
        if (ret)
index 95b90fa..54783ab 100644 (file)
@@ -327,11 +327,6 @@ adm5120_leds_init(void)
        struct mach_data *mach;
        int i, ret;
 
-       if (mips_machgroup != MACH_GROUP_ADM5120) {
-               ret = -EINVAL;
-               goto err;
-       }
-
        mach = adm5120_leds_findmach(mips_machtype);
        if (mach == NULL) {
                printk(KERN_ERR "leds-adm5120: unsupported board\n");
index 02c80f3..ca7f8ef 100644 (file)
@@ -188,9 +188,6 @@ static int usb_hcd_adm5120_probe(struct platform_device *pdev)
 {
        int ret;
 
-       if (mips_machgroup != MACH_GROUP_ADM5120)
-               return -ENODEV;
-
        ret = admhc_adm5120_probe(&adm5120_hc_driver, pdev);
 
        return ret;
index 42eb8f5..2d2604a 100644 (file)
@@ -45,7 +45,7 @@
 #include "../core/hcd.h"
 #include "../core/hub.h"
 
-#define DRIVER_VERSION "0.16.2"
+#define DRIVER_VERSION "0.16.3"
 #define DRIVER_AUTHOR  "Gabor Juhos <juhosg at openwrt.org>"
 #define DRIVER_DESC    "ADMtek USB 1.1 Host Controller Driver"