diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-12-13 15:01:50 -0800 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2009-01-04 23:50:34 +0100 |
commit | c816015860f6cfaf28c3cb95e3d3b6e4c4cfc688 (patch) | |
tree | 354fd30debebb81345747adf885f4ca3553adfb1 /drivers/ieee1394 | |
parent | 0bed1819687b50a769a1fee6d91cb0ef79b011b4 (diff) | |
download | linux-c816015860f6cfaf28c3cb95e3d3b6e4c4cfc688.tar.bz2 |
ieee1394: pcilynx: trivial endian annotation
bus_info_block was treated as a be32 everywhere, annotate
as such. Removes plenty of sparse warnings.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394')
-rw-r--r-- | drivers/ieee1394/pcilynx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ieee1394/pcilynx.h b/drivers/ieee1394/pcilynx.h index ec27321f6724..693a169acea3 100644 --- a/drivers/ieee1394/pcilynx.h +++ b/drivers/ieee1394/pcilynx.h @@ -52,7 +52,7 @@ struct ti_lynx { void __iomem *local_rom; void __iomem *local_ram; void __iomem *aux_port; - quadlet_t bus_info_block[5]; + __be32 bus_info_block[5]; /* * use local RAM of LOCALRAM_SIZE bytes for PCLs, which allows for |