Commit e68970cd authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

drivers/crypto/hifn_795x.c trivial endianness annotations

NB: remaining endianness warnings in the file are, AFAICS, real bugs.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 97968358
...@@ -392,8 +392,8 @@ static atomic_t hifn_dev_number; ...@@ -392,8 +392,8 @@ static atomic_t hifn_dev_number;
struct hifn_desc struct hifn_desc
{ {
volatile u32 l; volatile __le32 l;
volatile u32 p; volatile __le32 p;
}; };
struct hifn_dma { struct hifn_dma {
...@@ -481,10 +481,10 @@ struct hifn_device ...@@ -481,10 +481,10 @@ struct hifn_device
struct hifn_base_command struct hifn_base_command
{ {
volatile u16 masks; volatile __le16 masks;
volatile u16 session_num; volatile __le16 session_num;
volatile u16 total_source_count; volatile __le16 total_source_count;
volatile u16 total_dest_count; volatile __le16 total_dest_count;
}; };
#define HIFN_BASE_CMD_COMP 0x0100 /* enable compression engine */ #define HIFN_BASE_CMD_COMP 0x0100 /* enable compression engine */
...@@ -504,10 +504,10 @@ struct hifn_base_command ...@@ -504,10 +504,10 @@ struct hifn_base_command
*/ */
struct hifn_crypt_command struct hifn_crypt_command
{ {
volatile u16 masks; volatile __le16 masks;
volatile u16 header_skip; volatile __le16 header_skip;
volatile u16 source_count; volatile __le16 source_count;
volatile u16 reserved; volatile __le16 reserved;
}; };
#define HIFN_CRYPT_CMD_ALG_MASK 0x0003 /* algorithm: */ #define HIFN_CRYPT_CMD_ALG_MASK 0x0003 /* algorithm: */
...@@ -670,7 +670,7 @@ static inline u32 hifn_read_0(struct hifn_device *dev, u32 reg) ...@@ -670,7 +670,7 @@ static inline u32 hifn_read_0(struct hifn_device *dev, u32 reg)
{ {
u32 ret; u32 ret;
ret = readl((char *)(dev->bar[0]) + reg); ret = readl(dev->bar[0] + reg);
return ret; return ret;
} }
...@@ -679,19 +679,19 @@ static inline u32 hifn_read_1(struct hifn_device *dev, u32 reg) ...@@ -679,19 +679,19 @@ static inline u32 hifn_read_1(struct hifn_device *dev, u32 reg)
{ {
u32 ret; u32 ret;
ret = readl((char *)(dev->bar[1]) + reg); ret = readl(dev->bar[1] + reg);
return ret; return ret;
} }
static inline void hifn_write_0(struct hifn_device *dev, u32 reg, u32 val) static inline void hifn_write_0(struct hifn_device *dev, u32 reg, u32 val)
{ {
writel(val, (char *)(dev->bar[0]) + reg); writel(val, dev->bar[0] + reg);
} }
static inline void hifn_write_1(struct hifn_device *dev, u32 reg, u32 val) static inline void hifn_write_1(struct hifn_device *dev, u32 reg, u32 val)
{ {
writel(val, (char *)(dev->bar[1]) + reg); writel(val, dev->bar[1] + reg);
} }
static void hifn_wait_puc(struct hifn_device *dev) static void hifn_wait_puc(struct hifn_device *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment