Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6:
ieee1394: add quirk fix for Freecom HDD

+6
+6
drivers/ieee1394/nodemgr.c
··· 115 115 return error; 116 116 } 117 117 118 + #define OUI_FREECOM_TECHNOLOGIES_GMBH 0x0001db 119 + 118 120 static int nodemgr_get_max_rom(quadlet_t *bus_info_data, void *__ci) 119 121 { 122 + /* Freecom FireWire Hard Drive firmware bug */ 123 + if (be32_to_cpu(bus_info_data[3]) >> 8 == OUI_FREECOM_TECHNOLOGIES_GMBH) 124 + return 0; 125 + 120 126 return (be32_to_cpu(bus_info_data[2]) >> 8) & 0x3; 121 127 } 122 128