mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-03-21 06:24:12 +00:00
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
This commit is contained in:
commit
1bda71282d
1 changed files with 6 additions and 0 deletions
|
@ -115,8 +115,14 @@ static int nodemgr_bus_read(struct csr1212_csr *csr, u64 addr, u16 length,
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define OUI_FREECOM_TECHNOLOGIES_GMBH 0x0001db
|
||||||
|
|
||||||
static int nodemgr_get_max_rom(quadlet_t *bus_info_data, void *__ci)
|
static int nodemgr_get_max_rom(quadlet_t *bus_info_data, void *__ci)
|
||||||
{
|
{
|
||||||
|
/* Freecom FireWire Hard Drive firmware bug */
|
||||||
|
if (be32_to_cpu(bus_info_data[3]) >> 8 == OUI_FREECOM_TECHNOLOGIES_GMBH)
|
||||||
|
return 0;
|
||||||
|
|
||||||
return (be32_to_cpu(bus_info_data[2]) >> 8) & 0x3;
|
return (be32_to_cpu(bus_info_data[2]) >> 8) & 0x3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue