This patch fixes compilation error: CC [M] sound/pci/rme9652/hdsp.o sound/pci/rme9652/hdsp.c: In function `hdsp_request_fw_loader': sound/pci/rme9652/hdsp.c:4961: error: structure has no member named `data' hdsp.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) --- a/sound/pci/rme9652/hdsp.c 2005-01-25 16:15:24.000000000 +0100 +++ b/sound/pci/rme9652/hdsp.c 2005-01-26 22:54:49.297771824 +0100 @@ -4958,7 +4958,7 @@ #ifdef SNDRV_BIG_ENDIAN { int i; - u32 *src = hdsp->data; + u32 *src = fw->data; for (i = 0; i < ARRAY_SIZE(hdsp->firmware_cache); i++, src++) hdsp->firmware_cache[i] = ((*src & 0x000000ff) << 16) | ((*src & 0x0000ff00) << 8) |