From: Grant Likely Date: Wed, 8 Apr 2009 12:13:04 +0000 (+0200) Subject: xsysace: Fix dereferencing of cf_id after hd_driveid removal X-Git-Tag: v2.6.30-rc2~91^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0edef8c8b35f04b89311590dd6f1249f07fab3a;p=pandora-kernel.git xsysace: Fix dereferencing of cf_id after hd_driveid removal Commit 4aaf2fec718f6fbf38668edf733a0ab09a49cab1 (xsysace: make it 'struct hd_driveid'-free) converted the cf_id member of 'struct ace_device' from a 'struct hd_driveid' to a u16 array. However, references to the base of the structure were still using the '&' operator. When the address was used with the ata_id_u32() macro, the compiler used the size of the entire array instead of sizeof(u16) to calculate the offset from the base address. This patch removes the use of the '&' operator from all references of cf_id to fix the bug and remove future confusion. Signed-off-by: Grant Likely Signed-off-by: Bartlomiej Zolnierkiewicz --- Reading git-diff-tree failed