To get it working on 3.2, you need to take a snap shot of the stable 3.2
kernel.

http://git.kernel.org/?p=linux/kernel/git/stable/linux-
stable.git;a=tree;f=drivers/staging/vt6656;h=adfc9e293de7c6338723e43a6f01b8a05084c72a;hb=cd1b44e9d1843228414295e843ef208a72c44b58

and follow Joes instructions.

or modify the very bottom of main_usb.c in the upstream version as
follows;

static int __init vt6656_init_module(void)
{
    return usb_register(&vt6656_driver);
}

static void __exit vt6656_cleanup_module(void)
{
        usb_deregister(&vt6656_driver);
}

module_init(vt6656_init_module);
module_exit(vt6656_cleanup_module);

//module_usb_driver(vt6656_driver);


Don't forget to comment out the last line, and compile again.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/162671

Title:
  VT6656 wireless chipset is unsupported

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/162671/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to