mirror of https://github.com/hak5/openwrt-owl.git
parent
c7e43709f4
commit
9bfca5ce18
|
@ -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();
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue