Prev: [029/200] ALSA: hda: Use LPIB for Sony VPCS11V9E
Next: [025/200] ALSA: pcm: fix the fix of the runtime->boundary calculation
From: Greg KH on 1 Jul 2010 18:10 2.6.34-stable review patch. If anyone has any objections, please let me know. ------------------ From: Larry Finger <Larry.Finger(a)lwfinger.net> commit f65515275ea3e45fdcd0fb78455f542d6fdca086 upstream. In http://bugzilla.novell.com/show_bug.cgi?id=597299, the vt6655 driver generates a kernel BUG on a NULL pointer dereference at NULL. This problem has been traced to a failure in the wpa_set_wpadev() routine. As the vt6656 driver does not call this routine, the vt6655 code is similarly set to skip the call. Signed-off-by: Larry Finger <Larry.Finger(a)lwfinger.net> Tested-by: Richard Meek <osl2008(a)googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- drivers/staging/vt6655/device_main.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/staging/vt6655/device_main.c +++ b/drivers/staging/vt6655/device_main.c @@ -1090,11 +1090,13 @@ device_found1(struct pci_dev *pcid, cons } //2008-07-21-01<Add>by MikeLiu //register wpadev +#if 0 if(wpa_set_wpadev(pDevice, 1)!=0) { printk("Fail to Register WPADEV?\n"); unregister_netdev(pDevice->dev); free_netdev(dev); } +#endif device_print_info(pDevice); pci_set_drvdata(pcid, pDevice); return 0; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |