Skip to content

Commit

Permalink
[ALSA] hdsp - solved big endian problem
Browse files Browse the repository at this point in the history
RME HDSP driver
ppc firmware upload fix

Signed-off-by: Thomas Charbonnel <thomas@undata.org>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
  • Loading branch information
Thomas Charbonnel authored and Jaroslav Kysela committed May 29, 2005
1 parent 67e1b51 commit 7679a03
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions sound/pci/rme9652/hdsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4912,19 +4912,9 @@ static int __devinit hdsp_request_fw_loader(hdsp_t *hdsp)
release_firmware(fw);
return -EINVAL;
}
#ifdef SNDRV_BIG_ENDIAN
{
int i;
u32 *src = (u32*)fw->data;
for (i = 0; i < ARRAY_SIZE(hdsp->firmware_cache); i++, src++)
hdsp->firmware_cache[i] = ((*src & 0x000000ff) << 16) |
((*src & 0x0000ff00) << 8) |
((*src & 0x00ff0000) >> 8) |
((*src & 0xff000000) >> 16);
}
#else

memcpy(hdsp->firmware_cache, fw->data, sizeof(hdsp->firmware_cache));
#endif

release_firmware(fw);

hdsp->state |= HDSP_FirmwareCached;
Expand Down

0 comments on commit 7679a03

Please sign in to comment.