mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
ahci: fix unaligned access
gcc 4.7 will generate unaligned accesses to local char arrays, so make them static to avoid that. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Reviewed-by: Tom Rini <trini@ti.com>
This commit is contained in:
parent
2915a0223a
commit
48c3a87c0a
1 changed files with 1 additions and 1 deletions
|
@ -610,7 +610,7 @@ static void dump_ataid(hd_driveid_t *ataid)
|
|||
*/
|
||||
static int ata_scsiop_inquiry(ccb *pccb)
|
||||
{
|
||||
u8 hdr[] = {
|
||||
static const u8 hdr[] = {
|
||||
0,
|
||||
0,
|
||||
0x5, /* claim SPC-3 version compatibility */
|
||||
|
|
Loading…
Reference in a new issue