https://bugzilla.novell.com/show_bug.cgi?id=409961 User sassmann@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=409961#c11 --- Comment #11 from Stefan Assmann <sassmann@novell.com> 2008-09-05 03:22:15 MDT --- patch usb-fix-interrupt-disabling-for-hcds-with-shared-interrupt-handlers.patch removes the IRQF_DISABLED flag unconditionally, causing problems on platforms that don't use a shared interrupt but require IRQF_DISABLED. The following change in drivers/usb/core/hcd.c should solve this. - irqflags &= ~IRQF_DISABLED; + if (irqflags & IRQF_SHARED) + irqflags &= ~IRQF_DISABLED; For more details see http://kerneltrap.org/mailarchive/linux-usb/2008/8/24/3060094/thread -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.